Sign in
llvm
/
llvm-project
/
8bdd24b1a9723d0c09a0f8d6179e29fa45276645
/
.
/
clang
/
test
/
Sema
/
arm64-inline-asm.c
blob: 08eb669265f71ab0356443eec4b3f1a1f64b07ac [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -triple arm64-apple-ios7.1 -fsyntax-only -verify %s
// expected-no-diagnostics
void
foo
()
{
asm
volatile
(
"USE(%0)"
::
"z"
(
0LL
));
asm
volatile
(
"USE(%x0)"
::
"z"
(
0LL
));
asm
volatile
(
"USE(%w0)"
::
"z"
(
0
));
}