[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / Transforms / SafeStack / X86 / addr-taken.ll
blobcd9f76217a458510f2eb357a0c1015b094c86e92
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 ; Address-of local taken (j = &a)
7 ; Requires protector.
9 define void @foo() nounwind uwtable safestack {
10 entry:
11   ; CHECK: __safestack_unsafe_stack_ptr
12   %retval = alloca i32, align 4
13   %a = alloca i32, align 4
14   %j = alloca ptr, align 8
15   store i32 0, ptr %retval
16   %0 = load i32, ptr %a, align 4
17   %add = add nsw i32 %0, 1
18   store i32 %add, ptr %a, align 4
19   store ptr %a, ptr %j, align 8
20   ret void