PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pushpop_macro.c
blob08a82204313e899fbd5643ca8e3d79a27a46e642
1 extern void abort ();
3 #define _ 2
4 #pragma push_macro("_")
5 #undef _
6 #define _ 1
7 #pragma pop_macro("_")
9 int main ()
11 if (_ != 2)
12 abort ();
13 return 0;