1 // { dg-do assemble  }
2 // { dg-options "-O2" }
3 // Origin: Jakub Jelinek <jakub@redhat.com>
4 
5 void bar(int);
foo(int x)6 void foo(int x)
7 {
8   bar(({ int y; y = x; }));
9 }
10