From: Eric Christopher Date: Fri, 19 Aug 2011 21:24:41 +0000 (+0000) Subject: Migrate 2009-09-09-packed-layout.cpp test from llvm/test/FrontendC++. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ea6de30238b26f4a318db92ce69b3776b707e363;p=clang Migrate 2009-09-09-packed-layout.cpp test from llvm/test/FrontendC++. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138090 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/2009-09-09-packed-layout.cpp b/test/CodeGenCXX/2009-09-09-packed-layout.cpp new file mode 100644 index 0000000000..9de2f61420 --- /dev/null +++ b/test/CodeGenCXX/2009-09-09-packed-layout.cpp @@ -0,0 +1,18 @@ +// RUN: %clang_cc1 -emit-llvm -triple i386-apple-darwin11 %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;