aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/c-c++-common/pr55619.c
blob: f1b4e9c0023eb39a61d0ad950e6b2ec52dd9b779 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* PR c++/55619 */
/* { dg-do compile } */

int y[4];

void
f ()
{
  int x[4] = { 0, 1, 2, 3 };
  __asm volatile ("" : : "m" (x), "m" (y));
}