Re-add strcmp and known size object size checking optimization.
[oota-llvm.git] / test / Transforms / SimplifyLibCalls / strcpy_chk.ll
1 ; RUN: opt < %s -simplify-libcalls -S | FileCheck %s
2 @a = common global [60 x i8] zeroinitializer, align 1 ; <[60 x i8]*> [#uses=1]
3 @.str = private constant [8 x i8] c"abcdefg\00"   ; <[8 x i8]*> [#uses=1]
4
5 define i8* @foo() nounwind {
6 ; CHECK: @foo
7 ; CHECK-NEXT: call i8* @strcpy
8   %call = call i8* @__strcpy_chk(i8* getelementptr inbounds ([60 x i8]* @a, i32 0, i32 0), i8* getelementptr inbounds ([8 x i8]* @.str, i32 0, i32 0), i32 60) ; <i8*> [#uses=1]
9   ret i8* %call
10 }
11
12 declare i8* @__strcpy_chk(i8*, i8*, i32) nounwind