[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / Transforms / SafeStack / X86 / dynamic-alloca.ll
blobd8377781bb6e5ef34c4e45fc71c362144cc5b0bc
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
4 @.str = private unnamed_addr constant [4 x i8] c"%s\0A\00", align 1
6 ; Variable sized alloca
7 ;  safestack attribute
8 ; Requires protector.
9 define void @foo(i32 %n) nounwind uwtable safestack {
10 entry:
11   ; CHECK: %[[SP:.*]] = load ptr, ptr @__safestack_unsafe_stack_ptr
12   %n.addr = alloca i32, align 4
13   %a = alloca ptr, align 8
14   store i32 %n, ptr %n.addr, align 4
15   %0 = load i32, ptr %n.addr, align 4
16   %conv = sext i32 %0 to i64
17   %1 = alloca i8, i64 %conv
18   store ptr %1, ptr %a, align 8
19   ; CHECK: store ptr %[[SP:.*]], ptr @__safestack_unsafe_stack_ptr
20   ret void