view test/CodeGen/AArch64/arm64-2011-03-21-Unaligned-Frame-Index.ll @ 117:facf19d07cd9

check EHStack on EmitCall (CbC goto)
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Wed, 24 Aug 2016 20:10:41 +0900
parents afa8332a0e37
children 1172e4bd9c6f
line wrap: on
line source

; RUN: llc < %s -march=arm64 | FileCheck %s
define void @foo(i64 %val) {
; CHECK: foo
;   The stack frame store is not 64-bit aligned. Make sure we use an
;   instruction that can handle that.
; CHECK: stur x0, [sp, #20]
  %a = alloca [49 x i32], align 4
  %p32 = getelementptr inbounds [49 x i32], [49 x i32]* %a, i64 0, i64 2
  %p = bitcast i32* %p32 to i64*
  store i64 %val, i64* %p, align 8
  ret void
}