1/* { dg-do compile } */
2/* { dg-options "-w" } */
3
4void f ()
5{
6  int i __asm__ ("%eax");
7  __asm__ volatile ("" : "=a" (i));
8}
9
10
11