OSDN Git Service

* gcc.dg/pr34351.c: Compile for x86 targets only. Use %ebx register.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / asm-qual-1.c
1 /* Test that qualifiers other than volatile are ignored on asm.  */
2 /* Origin: Joseph Myers <joseph@codesourcery.com> */
3 /* { dg-do compile } */
4 /* { dg-options "-std=gnu99" } */
5
6 void
7 f (void)
8 {
9   asm volatile ("");
10   asm const (""); /* { dg-warning "const qualifier ignored on asm" } */
11   asm restrict (""); /* { dg-warning "restrict qualifier ignored on asm" } */
12 }