blob: d68928ee6b5ae80f44bf458afb3ac55c296a7ed2 [file] [log] [blame]
Daniel Dunbar43186a42011-02-12 18:19:53 +00001; RUN: opt < %s -simplify-libcalls -S -o %t
2; RUN: FileCheck < %t %s
3
4; CHECK-NOT: call{{.*}}printf
5; CHECK: putchar
Chris Lattner9a34ecd2007-04-14 01:17:38 +00006
7@str = internal constant [13 x i8] c"hello world\0A\00" ; <[13 x i8]*> [#uses=1]
8@str1 = internal constant [2 x i8] c"h\00" ; <[2 x i8]*> [#uses=1]
9
10define void @foo() {
11entry:
12 %tmp1 = tail call i32 (i8*, ...)* @printf( i8* getelementptr ([13 x i8]* @str, i32 0, i32 0) ) ; <i32> [#uses=0]
13 ret void
14}
15
16declare i32 @printf(i8*, ...)
17
18define void @bar() {
19entry:
20 %tmp1 = tail call i32 (i8*, ...)* @printf( i8* getelementptr ([2 x i8]* @str1, i32 0, i32 0) ) ; <i32> [#uses=0]
21 ret void
22}
23