[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / Transforms / SafeStack / X86 / constant-gep-call.ll
blob880471a8a63d91ca010dbabb9b216cfb5e1b2e3e
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 %struct.nest = type { %struct.pair, %struct.pair }
5 %struct.pair = type { i32, i32 }
7 @.str = private unnamed_addr constant [4 x i8] c"%s\0A\00", align 1
9 ; Nested structure, no arrays, no address-of expressions.
10 ; Verify that the resulting gep-of-gep does not incorrectly trigger
11 ; a safe stack protector.
12 ; safestack attribute
13 ; Requires no protector.
14 ; CHECK-LABEL: @foo(
15 define void @foo() nounwind uwtable safestack {
16 entry:
17   ; CHECK-NOT: __safestack_unsafe_stack_ptr
18   %c = alloca %struct.nest, align 4
19   %b = getelementptr inbounds %struct.nest, ptr %c, i32 0, i32 1
20   %0 = load i32, ptr %b, align 4
21   %call = call i32 (ptr, ...) @printf(ptr @.str, i32 %0)
22   ret void
25 declare i32 @printf(ptr, ...)