repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
arm-inline-asm.c
blob
95bb507c2798b4151ab66cd1a14e33d821a11f5d
1
// REQUIRES: arm-registered-target
2
// RUN: %clang_cc1 -triple armv7-apple-darwin9 -emit-llvm -w -o - %s | FileCheck %s
3
4
void
t1
(
void
*
f
,
int
g
) {
5
// CHECK: call void asm "str $1, $0", "=*Q,r"
6
asm
(
"str %1, %0"
:
"=Q"
(
f
) :
"r"
(
g
));
7
}