[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / Transforms / SafeStack / X86 / escape-gep-invoke.ll
blobd09a3d85d39e5920ca85d890b078fbe309e3677b
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.pair = type { i32, i32 }
6 @.str = private unnamed_addr constant [4 x i8] c"%s\0A\00", align 1
8 ; Addr-of a struct element passed into an invoke instruction.
9 ;   (GEP followed by an invoke)
10 ;  safestack attribute
11 ; Requires protector.
12 define i32 @foo() uwtable safestack personality ptr @__gxx_personality_v0 {
13 entry:
14   ; CHECK: __safestack_unsafe_stack_ptr
15   %c = alloca %struct.pair, align 4
16   %exn.slot = alloca ptr
17   %ehselector.slot = alloca i32
18   store i32 0, ptr %c, align 4
19   invoke void @_Z3exceptPi(ptr %c)
20           to label %invoke.cont unwind label %lpad
22 invoke.cont:
23   ret i32 0
25 lpad:
26   %0 = landingpad { ptr, i32 }
27           catch ptr null
28   ret i32 0
31 declare void @_Z3exceptPi(ptr)
32 declare i32 @__gxx_personality_v0(...)