Daily bump.
[gcc.git] / gcc / testsuite / g++.dg / torture / pr84961-2.C
blob0909eedb7f964e8167a292ffa45f36acf6332663
1 // PR c++/84961
2 // { dg-do compile }
4 short a;
5 volatile int b;
6 int c, d;
8 void
9 foo ()
11   asm volatile ("" : : "m" (b = a));
14 void
15 bar ()
17   asm volatile ("" : : "m" (++c, ++d, b = a));
20 void
21 baz ()
23   asm volatile ("" : : "m" (--b));