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 | 05927b0c90208dc1d79b7b915942f69cb803598d (patch) | |
tree | 63b593eb8aec1e5adafd94a83d7caf4abdc541cc /llvm/test/FrontendC++/2009-09-09-packed-layout.cpp | |
parent | e8ad1052020f7b979c62992571258f88b6d3b4d5 (diff) | |
download | bcm5719-llvm-05927b0c90208dc1d79b7b915942f69cb803598d.tar.gz bcm5719-llvm-05927b0c90208dc1d79b7b915942f69cb803598d.zip |
Remove migrated tests.
llvm-svn: 138086
Diffstat (limited to 'llvm/test/FrontendC++/2009-09-09-packed-layout.cpp')
-rw-r--r-- | llvm/test/FrontendC++/2009-09-09-packed-layout.cpp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/llvm/test/FrontendC++/2009-09-09-packed-layout.cpp b/llvm/test/FrontendC++/2009-09-09-packed-layout.cpp deleted file mode 100644 index 921aad79f73..00000000000 --- a/llvm/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; |