1 ; RUN: llc -o - %s -verify-machineinstrs | FileCheck %s
3 ; Make sure we use a frame pointer and fp relative addressing for the emergency
4 ; spillslot when we have gigantic callframes.
6 ; CHECK: stur {{.*}}, [x29, #{{.*}}] // 8-byte Folded Spill
7 ; CHECK: ldur {{.*}}, [x29, #{{.*}}] // 8-byte Folded Reload
8 target triple = "aarch64--"
9 declare void @extfunc(ptr byval([4096 x i64]) %p)
10 define void @func(ptr %z) {
11 %lvar = alloca [31 x i8]
12 %v = load volatile [31 x i8], ptr %lvar
13 store volatile [31 x i8] %v, ptr %lvar
14 call void @extfunc(ptr byval([4096 x i64]) %z)