aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/abi/mangle21.C
blob: f457d600cd8e2ffca81a6c76d802889014c358c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// PR c++/14324
// { dg-do assemble }

extern "C" {

void fun1(void)
{
  do { static int xyz __attribute__((unused)) = 1; } while (0);
  do { static int xyz __attribute__((unused)) = 2; } while (0);
  do { static int xyz __attribute__((unused)) = 3; } while (0);
}

}