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
[MLIR][TOSA] Update CustomOp input and output names (#118408)
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
X86
/
x86.c
blob
6a3a1b499623c1276ce997dee01b952e152983e7
1
// RUN: %clang_cc1 %s -triple=i686-pc-linux-gnu -emit-llvm -o - > %t1
2
// RUN: grep "ax" %t1
3
// RUN: grep "bx" %t1
4
// RUN: grep "cx" %t1
5
// RUN: grep "dx" %t1
6
// RUN: grep "di" %t1
7
// RUN: grep "si" %t1
8
// RUN: grep "st" %t1
9
// RUN: grep "st(1)" %t1
10
11
void
test1
(
void
) {
12
int
d1
,
d2
;
13
asm
(
""
:
"=a"
(
d1
),
"=b"
(
d2
) :
14
"c"
(
0
),
"d"
(
0
),
"S"
(
0
),
"D"
(
0
),
"t"
(
0
),
"u"
(
0
));
15
}