blob: ae28e4a1000826283a5d0b47918d7b4f00c7324d [file] [log] [blame]
Reid Spencer926bd0c2005-04-30 00:52:04 +00001; Test that the StrCmpOptimizer works correctly
Tanya Lattnerceca1942008-03-10 07:21:50 +00002; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | \
Reid Spencer43b40032007-04-16 15:31:49 +00003; RUN: not grep {call.*strcmp}
Reid Spencer926bd0c2005-04-30 00:52:04 +00004
Tanya Lattnerceca1942008-03-10 07:21:50 +00005@hello = constant [6 x i8] c"hello\00" ; <[6 x i8]*> [#uses=1]
6@hell = constant [5 x i8] c"hell\00" ; <[5 x i8]*> [#uses=1]
7@null = constant [1 x i8] zeroinitializer ; <[1 x i8]*> [#uses=1]
Reid Spencer926bd0c2005-04-30 00:52:04 +00008
Tanya Lattnerceca1942008-03-10 07:21:50 +00009declare i32 @strcmp(i8*, i8*)
Reid Spencer926bd0c2005-04-30 00:52:04 +000010
Tanya Lattnerceca1942008-03-10 07:21:50 +000011declare i32 @puts(i8*)
12
13define i32 @main() {
14 %hello_p = getelementptr [6 x i8]* @hello, i32 0, i32 0 ; <i8*> [#uses=5]
15 %hell_p = getelementptr [5 x i8]* @hell, i32 0, i32 0 ; <i8*> [#uses=1]
16 %null_p = getelementptr [1 x i8]* @null, i32 0, i32 0 ; <i8*> [#uses=4]
17 %temp1 = call i32 @strcmp( i8* %hello_p, i8* %hello_p ) ; <i32> [#uses=1]
18 %temp2 = call i32 @strcmp( i8* %null_p, i8* %null_p ) ; <i32> [#uses=1]
19 %temp3 = call i32 @strcmp( i8* %hello_p, i8* %null_p ) ; <i32> [#uses=1]
20 %temp4 = call i32 @strcmp( i8* %null_p, i8* %hello_p ) ; <i32> [#uses=1]
21 %temp5 = call i32 @strcmp( i8* %hell_p, i8* %hello_p ) ; <i32> [#uses=1]
22 %rslt1 = add i32 %temp1, %temp2 ; <i32> [#uses=1]
23 %rslt2 = add i32 %rslt1, %temp3 ; <i32> [#uses=1]
24 %rslt3 = add i32 %rslt2, %temp4 ; <i32> [#uses=1]
25 %rslt4 = add i32 %rslt3, %temp5 ; <i32> [#uses=1]
26 ret i32 %rslt4
Reid Spencer926bd0c2005-04-30 00:52:04 +000027}
Tanya Lattnerceca1942008-03-10 07:21:50 +000028