Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.target / mips / asm-1.c
blobaed5b8cb285cee4808f489e2db2ff41009e98e44
1 /* PR target/17565. GCC used to put the asm into the delay slot
2 of the call. */
3 /* { dg-do assemble } */
4 /* { dg-mips-options "-O -mno-mips16" } */
5 int foo (int n)
7 register int k asm ("$16") = n;
8 if (k > 0)
10 bar ();
11 asm ("li %0,0x12345678" : "=r" (k));
13 return k;