blob: a569f9f78767bf9a8534e39a777d89136ed2e984 [file] [log] [blame]
Dale Johannesenb53d938b2009-09-09 23:37:46 +00001// RUN: %llvmgxx -S -m32 -emit-llvm %s -o /dev/null
2class X {
3 public:
4 virtual ~X();
5 short y;
6};
7#pragma pack(push, 1)
8class Z : public X {
9 public: enum { foo = ('x') };
10 virtual int y() const;
11};
12#pragma pack(pop)
13class Y : public X {
14public: enum { foo = ('y'), bar = 0 };
15};
16X x;
17Y y;
18Z z;