Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / Transforms / SafeStack / X86 / escape-bitcast-store2.ll
blob1a3c8ac215e0b27501c5e63d221af2bab5a148ad
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 ; RUN: opt -passes=safe-stack -S -mtriple=i386-pc-linux-gnu < %s -o - | FileCheck %s
4 ; RUN: opt -passes=safe-stack -S -mtriple=x86_64-pc-linux-gnu < %s -o - | FileCheck %s
6 @.str = private unnamed_addr constant [4 x i8] c"%s\0A\00", align 1
8 ; Addr-of a local cast to a ptr of a different type (optimized)
9 ;   (e.g., int a; ... ; ptr b = &a;)
10 ;  safestack attribute
11 ; Requires protector.
12 define void @foo() nounwind uwtable safestack {
13 entry:
14   ; CHECK: __safestack_unsafe_stack_ptr
15   %a = alloca i32, align 4
16   store i32 0, ptr %a, align 4
17   call void @funfloat(ptr %a) nounwind
18   ret void
21 declare void @funfloat(ptr)