summaryrefslogtreecommitdiffstats
path: root/llvm/test/Transforms/SafeStack/cast.ll
blob: df6273a117c3fda0e9812344d00aae79b53896b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; RUN: opt -safe-stack -S -mtriple=i386-pc-linux-gnu < %s -o - | FileCheck %s
; RUN: opt -safe-stack -S -mtriple=x86_64-pc-linux-gnu < %s -o - | FileCheck %s

@.str = private unnamed_addr constant [4 x i8] c"%s\0A\00", align 1

; PtrToInt/IntToPtr Cast
; Requires no protector.

; CHECK-LABEL: @foo(
define void @foo() nounwind uwtable safestack {
entry:
  ; CHECK-NOT: __safestack_unsafe_stack_ptr
  %a = alloca i32, align 4
  %0 = ptrtoint i32* %a to i64
  %1 = inttoptr i64 %0 to i32*
  ret void
}
OpenPOWER on IntegriCloud