diff options
author | Eric Christopher <echristo@apple.com> | 2011-08-19 21:21:26 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-08-19 21:21:26 +0000 |
commit | ea93661f913504a9de5b21b3bc96009be0bd0736 (patch) | |
tree | 8cac5f5755d33d8a3392a5f693b3f2f536823264 /test/FrontendC++/2009-09-09-packed-layout.cpp | |
parent | cf15aa0a586e3f5bc8f76924fe85290df53027f8 (diff) |
Remove migrated tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138086 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC++/2009-09-09-packed-layout.cpp')
-rw-r--r-- | test/FrontendC++/2009-09-09-packed-layout.cpp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/test/FrontendC++/2009-09-09-packed-layout.cpp b/test/FrontendC++/2009-09-09-packed-layout.cpp deleted file mode 100644 index 921aad79f7..0000000000 --- a/test/FrontendC++/2009-09-09-packed-layout.cpp +++ /dev/null @@ -1,18 +0,0 @@ -// RUN: %llvmgxx -S -m32 %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; |