1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 11:33:24 +02:00
llvm-mirror/test/FrontendC++/2009-09-09-packed-layout.cpp
Dale Johannesen 181999c0a6 Testcase for (llvm-gcc) 81399. Adjust an older
test case to allow for different, functionally
identical output.

llvm-svn: 81400
2009-09-09 23:37:46 +00:00

19 lines
299 B
C++

// RUN: %llvmgxx -S -m32 -emit-llvm %s -o /dev/null
class X {
public:
virtual ~X();
short y;
};
#pragma pack(push, 1)
class Z : public X {
public: enum { foo = ('x') };
virtual int y() const;
};
#pragma pack(pop)
class Y : public X {
public: enum { foo = ('y'), bar = 0 };
};
X x;
Y y;
Z z;