Introduce class rtx_reader
[official-gcc.git] / gcc / testsuite / g++.dg / ext / asm12.C
blob9823a8fd7e382ac033b27acf6a21685ce348e823
1 // PR c++/55619
2 // { dg-do compile }
4 typedef int V __attribute__ ((vector_size (4 * sizeof (int))));
6 static const V C = { 0x201, 0, 0, 0 };
7 static const int D = 0x201;
9 void
10 f ()
12   __asm volatile ("" : : "m" (C));
13   __asm volatile ("" : : "m" (D));