ca3c21ab01bb5fa955f83c90eb66db73eb3b3e18
[oota-llvm.git] / test / Transforms / SafeStack / no-attr.ll
1 ; RUN: opt -safe-stack -S -mtriple=i386-pc-linux-gnu < %s -o - | FileCheck %s
2 ; RUN: opt -safe-stack -S -mtriple=x86_64-pc-linux-gnu < %s -o - | FileCheck %s
3
4 @.str = private unnamed_addr constant [4 x i8] c"%s\0A\00", align 1
5
6 ; no safestack attribute
7 ; Requires no protector.
8
9 ; CHECK: @foo
10 define void @foo(i8* %a) nounwind uwtable {
11 entry:
12   ; CHECK-NOT: __safestack_unsafe_stack_ptr
13   %a.addr = alloca i8*, align 8
14   %buf = alloca [16 x i8], align 16
15   store i8* %a, i8** %a.addr, align 8
16   %arraydecay = getelementptr inbounds [16 x i8], [16 x i8]* %buf, i32 0, i32 0
17   %0 = load i8*, i8** %a.addr, align 8
18   %call = call i8* @strcpy(i8* %arraydecay, i8* %0)
19   %arraydecay1 = getelementptr inbounds [16 x i8], [16 x i8]* %buf, i32 0, i32 0
20   %call2 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* %arraydecay1)
21   ret void
22 }
23
24 declare i8* @strcpy(i8*, i8*)
25 declare i32 @printf(i8*, ...)