blob: f85394d30281bcdd64f07b8f554865a7c7f51927 [file] [log] [blame]
Reid Spencerf31918b2005-05-03 00:52:19 +00001; Test that the StrNCmpOptimizer 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.*strncmp}
Reid Spencerd2db8802005-05-03 00:50:43 +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 Spencerd2db8802005-05-03 00:50:43 +00008
Tanya Lattnerceca1942008-03-10 07:21:50 +00009declare i32 @strncmp(i8*, i8*, i32)
Reid Spencerd2db8802005-05-03 00:50:43 +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 @strncmp( i8* %hello_p, i8* %hello_p, i32 5 ) ; <i32> [#uses=1]
18 %temp2 = call i32 @strncmp( i8* %null_p, i8* %null_p, i32 0 ) ; <i32> [#uses=1]
19 %temp3 = call i32 @strncmp( i8* %hello_p, i8* %null_p, i32 0 ) ; <i32> [#uses=1]
20 %temp4 = call i32 @strncmp( i8* %null_p, i8* %hello_p, i32 0 ) ; <i32> [#uses=1]
21 %temp5 = call i32 @strncmp( i8* %hell_p, i8* %hello_p, i32 4 ) ; <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 Spencerd2db8802005-05-03 00:50:43 +000027}
Tanya Lattnerceca1942008-03-10 07:21:50 +000028