Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / asm-4.c
blob00675982aa2247b7e16fb8aded1131fac45a9233
1 /* { dg-do compile } */
2 /* { dg-options "" } */
4 int main()
6 int x, y, z;
8 asm volatile ("test0 X%0Y%[arg]Z" : [arg] "=g" (x));
9 asm volatile ("test1 X%[out]Y%[in]Z" : [out] "=g" (y) : [in] "0"(y));
10 asm volatile ("test2 X%a0Y%a[arg]Z" : : [arg] "p" (&z));
11 asm volatile ("test3 %[in]" : [inout] "=g"(x) : "[inout]" (x), [in] "g" (y));
14 /* ??? Someone explain why the back reference dosn't work. */
15 /* { dontdg-final { scan-assembler "test0 X(.*)Y\1Z" } } */
16 /* { dontdg-final { scan-assembler "test1 X(.*)Y\1Z" } } */
17 /* { dontdg-final { scan-assembler "test2 X(.*)Y\1Z" } } */