comparison test/CodeGen/AArch64/arm64-2011-03-21-Unaligned-Frame-Index.ll @ 77:54457678186b LLVM3.6

LLVM 3.6
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Mon, 08 Sep 2014 22:06:00 +0900
parents
children afa8332a0e37
comparison
equal deleted inserted replaced
34:e874dbf0ad9d 77:54457678186b
1 ; RUN: llc < %s -march=arm64 | FileCheck %s
2 define void @foo(i64 %val) {
3 ; CHECK: foo
4 ; The stack frame store is not 64-bit aligned. Make sure we use an
5 ; instruction that can handle that.
6 ; CHECK: stur x0, [sp, #20]
7 %a = alloca [49 x i32], align 4
8 %p32 = getelementptr inbounds [49 x i32]* %a, i64 0, i64 2
9 %p = bitcast i32* %p32 to i64*
10 store i64 %val, i64* %p, align 8
11 ret void
12 }