blob: da3261d2f6947a3542bb70c8ea4e97e93a8c34e0 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; Test that the StrCatOptimizer works correctly
Tanya Lattner003eae52008-03-10 07:21:50 +00002; RUN: llvm-as < %s | opt -constprop -simplify-libcalls | \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003; RUN: llvm-dis | not grep {call.*llvm.memcpy.i32}
4
Tanya Lattner003eae52008-03-10 07:21:50 +00005@h = constant [2 x i8] c"h\00" ; <[2 x i8]*> [#uses=1]
6@hel = constant [4 x i8] c"hel\00" ; <[4 x i8]*> [#uses=1]
7@hello_u = constant [8 x i8] c"hello_u\00" ; <[8 x i8]*> [#uses=1]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008
Tanya Lattner003eae52008-03-10 07:21:50 +00009declare void @llvm.memcpy.i32(i8*, i8*, i32, i32)
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010
Tanya Lattner003eae52008-03-10 07:21:50 +000011define i32 @main() {
12 %h_p = getelementptr [2 x i8]* @h, i32 0, i32 0 ; <i8*> [#uses=1]
13 %hel_p = getelementptr [4 x i8]* @hel, i32 0, i32 0 ; <i8*> [#uses=1]
14 %hello_u_p = getelementptr [8 x i8]* @hello_u, i32 0, i32 0 ; <i8*> [#uses=1]
15 %target = alloca [1024 x i8] ; <[1024 x i8]*> [#uses=1]
16 %target_p = getelementptr [1024 x i8]* %target, i32 0, i32 0 ; <i8*> [#uses=3]
17 call void @llvm.memcpy.i32( i8* %target_p, i8* %h_p, i32 2, i32 2 )
18 call void @llvm.memcpy.i32( i8* %target_p, i8* %hel_p, i32 4, i32 4 )
19 call void @llvm.memcpy.i32( i8* %target_p, i8* %hello_u_p, i32 8, i32 8 )
20 ret i32 0
Dan Gohmanf17a25c2007-07-18 16:29:46 +000021}
Tanya Lattner003eae52008-03-10 07:21:50 +000022