1 /* { dg-do compile { target { ! ia32 } } } */
2 /* { dg-options "-fomit-frame-pointer" } */
3 
foo()4 void foo()
5 {
6   int a=0, b=0, c=0, e=0, f=0, g=0, h=0, i=0;
7     __asm__ __volatile__ (""
8     :
9     :
10     : "bp"
11   );
12 }
13 
14