]> granicus.if.org Git - clang/commitdiff
Migrate 2009-09-09-packed-layout.cpp test from llvm/test/FrontendC++.
authorEric Christopher <echristo@apple.com>
Fri, 19 Aug 2011 21:24:41 +0000 (21:24 +0000)
committerEric Christopher <echristo@apple.com>
Fri, 19 Aug 2011 21:24:41 +0000 (21:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138090 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGenCXX/2009-09-09-packed-layout.cpp [new file with mode: 0644]

diff --git a/test/CodeGenCXX/2009-09-09-packed-layout.cpp b/test/CodeGenCXX/2009-09-09-packed-layout.cpp
new file mode 100644 (file)
index 0000000..9de2f61
--- /dev/null
@@ -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;