[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / Transforms / SafeStack / X86 / cast.ll
blob41f01c3b576ae4faa3cf95af1ab844bd1432c199
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 ; PtrToInt/IntToPtr Cast
8 define void @IntToPtr() nounwind uwtable safestack {
9 entry:
10   ; CHECK-LABEL: @IntToPtr(
11   ; CHECK-NOT: __safestack_unsafe_stack_ptr
12   ; CHECK: ret void
13   %a = alloca i32, align 4
14   %0 = ptrtoint ptr %a to i64
15   %1 = inttoptr i64 %0 to ptr
16   ret void
19 define i8 @BitCastNarrow() nounwind uwtable safestack {
20 entry:
21   ; CHECK-LABEL: @BitCastNarrow(
22   ; CHECK-NOT: __safestack_unsafe_stack_ptr
23   ; CHECK: ret i8
24   %a = alloca i32, align 4
25   %0 = load i8, ptr %a, align 1
26   ret i8 %0
29 define i64 @BitCastWide() nounwind uwtable safestack {
30 entry:
31   ; CHECK-LABEL: @BitCastWide(
32   ; CHECK: __safestack_unsafe_stack_ptr
33   ; CHECK: ret i64
34   %a = alloca i32, align 4
35   %0 = load i64, ptr %a, align 1
36   ret i64 %0