Sign in
llvm
/
llvm-project
/
llvm
/
c8ab2db6b9ba8ad2797427370ac4ac2f97d20e3b
/
.
/
test
/
CodeGen
/
AArch64
/
inline-asm-clobber.ll
blob: 666b7774757aef4e3367177f7c68441fe2f4a269 [
file
] [
log
] [
blame
]
; RUN: llc <%s -mtriple=aarch64 2>&1 | FileCheck %s
; CHECK: warning: inline asm clobber list contains reserved registers: SP
define
void
@foo
()
nounwind
{
call
void
asm
sideeffect
"mov x7, #1"
,
"~{x7},~{sp}"
()
ret
void
}