blob: 9dc01b326e749a6e5c66e9d29b58818f790031ea [file] [log] [blame]
Reid Spencere589cc42005-04-29 23:02:15 +00001; Test that the StrCpyOptimizer 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.*strcpy}
Reid Spencer45254f72005-04-29 06:01:28 +00004
Dan Gohman600d52c2009-08-19 23:18:49 +00005; This transformation requires the pointer size, as it assumes that size_t is
6; the size of a pointer.
7target datalayout = "-p:64:64:64"
8
Tanya Lattnerceca1942008-03-10 07:21:50 +00009@hello = constant [6 x i8] c"hello\00" ; <[6 x i8]*> [#uses=1]
10@null = constant [1 x i8] zeroinitializer ; <[1 x i8]*> [#uses=1]
11@null_hello = constant [7 x i8] c"\00hello\00" ; <[7 x i8]*> [#uses=1]
Reid Spencer45254f72005-04-29 06:01:28 +000012
Tanya Lattnerceca1942008-03-10 07:21:50 +000013declare i8* @strcpy(i8*, i8*)
Reid Spencer45254f72005-04-29 06:01:28 +000014
Tanya Lattnerceca1942008-03-10 07:21:50 +000015declare i32 @puts(i8*)
16
17define i32 @main() {
18 %target = alloca [1024 x i8] ; <[1024 x i8]*> [#uses=1]
19 %arg1 = getelementptr [1024 x i8]* %target, i32 0, i32 0 ; <i8*> [#uses=2]
20 store i8 0, i8* %arg1
21 %arg2 = getelementptr [6 x i8]* @hello, i32 0, i32 0 ; <i8*> [#uses=1]
22 %rslt1 = call i8* @strcpy( i8* %arg1, i8* %arg2 ) ; <i8*> [#uses=1]
23 %arg3 = getelementptr [1 x i8]* @null, i32 0, i32 0 ; <i8*> [#uses=1]
24 %rslt2 = call i8* @strcpy( i8* %rslt1, i8* %arg3 ) ; <i8*> [#uses=1]
25 %arg4 = getelementptr [7 x i8]* @null_hello, i32 0, i32 0 ; <i8*> [#uses=1]
26 %rslt3 = call i8* @strcpy( i8* %rslt2, i8* %arg4 ) ; <i8*> [#uses=1]
27 call i32 @puts( i8* %rslt3 ) ; <i32>:1 [#uses=0]
28 ret i32 0
Reid Spencer45254f72005-04-29 06:01:28 +000029}
Tanya Lattnerceca1942008-03-10 07:21:50 +000030