Skip to content

Commit

Permalink
add function with $ in its name testcase
Browse files Browse the repository at this point in the history
  • Loading branch information
kripken committed Feb 19, 2014
1 parent edc9c77 commit 1725a88
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions tests/cases/dollar.ll
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
; ModuleID = 'tests/hello_world.bc'
target datalayout = "e-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-p:32:32:32-v128:32:32"
target triple = "le32-unknown-nacl"

@.str = private unnamed_addr constant [15 x i8] c"hello, world!\0A\00", align 1 ; [#uses=1 type=[15 x i8]*]

define void @"dollar$"() {
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([15 x i8]* @.str, i32 0, i32 0)) ; [#uses=0 type=i32]
ret void
}

; [#uses=0]
define i32 @main() {
entry:
%retval = alloca i32, align 4 ; [#uses=1 type=i32*]
store i32 0, i32* %retval
call void ()* @"dollar$"()
ret i32 1
}

; [#uses=1]
declare i32 @printf(i8*, ...)

0 comments on commit 1725a88

Please sign in to comment.