aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp/_Pragma1.C
blob: 714d10edb7db0ea85954f4d721d0ffb4035443c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
// PR c++/27748
// This is supposed to succeed only if
// the target defines HANDLE_PRAGMA_PACK_PUSH_POP 
// and doesn't define HANDLE_PRAGMA_PACK_WITH_EXPANSION.
// { dg-do compile { target { ! { powerpc-ibm-aix* *-*-solaris2* fido-*-* m68k-*-* sh*-[us]*-elf m32c-*-* *-*-vxworks } } } }

#define push bar
#define foo _Pragma ("pack(push)")
foo
int i;
#pragma pack(pop)