blob: a568058d58f665d303ef2ecb6581990304f1140c (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Header for the PCH test asm.c
void f() {
int i;
asm ("foo\n" : : "a" (i + 2));
asm ("foo\n" : [symbolic_name] "=a" (i) : "[symbolic_name]" (i));
}
void clobbers() {
asm ("nop" : : : "ax", "#ax", "%ax");
asm ("nop" : : : "eax", "rax", "ah", "al");
asm ("nop" : : : "0", "%0", "#0");
}
|