[llvm-commits] [llvm] r138086 - in /llvm/trunk/test/FrontendC++: 2009-09-09-packed-layout.cpp 2009-10-27-crash.cpp

Eric Christopher echristo at apple.com
Fri Aug 19 14:21:26 PDT 2011


Author: echristo
Date: Fri Aug 19 16:21:26 2011
New Revision: 138086

URL: http://llvm.org/viewvc/llvm-project?rev=138086&view=rev
Log:
Remove migrated tests.

Removed:
    llvm/trunk/test/FrontendC++/2009-09-09-packed-layout.cpp
    llvm/trunk/test/FrontendC++/2009-10-27-crash.cpp

Removed: llvm/trunk/test/FrontendC++/2009-09-09-packed-layout.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC%2B%2B/2009-09-09-packed-layout.cpp?rev=138085&view=auto
==============================================================================
--- llvm/trunk/test/FrontendC++/2009-09-09-packed-layout.cpp (original)
+++ llvm/trunk/test/FrontendC++/2009-09-09-packed-layout.cpp (removed)
@@ -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;

Removed: llvm/trunk/test/FrontendC++/2009-10-27-crash.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC%2B%2B/2009-10-27-crash.cpp?rev=138085&view=auto
==============================================================================
--- llvm/trunk/test/FrontendC++/2009-10-27-crash.cpp (original)
+++ llvm/trunk/test/FrontendC++/2009-10-27-crash.cpp (removed)
@@ -1,43 +0,0 @@
-// RUN: %llvmgxx -S %s -o /dev/null
-// Radar 7328944
-
-typedef struct
-{
-	unsigned short a : 1;
-	unsigned short b : 2;
-	unsigned short c : 1;
-	unsigned short d : 1;
-	unsigned short e : 1;
-	unsigned short f : 1;
-	unsigned short g : 2;
-	unsigned short : 7;
-	union
-	{
-		struct
-		{
-			unsigned char h : 1;
-			unsigned char i : 1;
-			unsigned char j : 1;
-			unsigned char : 5;
-		};
-		struct
-		{
-			unsigned char k : 3;
-			unsigned char : 5;
-		};
-	};
-	unsigned char : 8;
-} tt;
-
-typedef struct
-{
- unsigned char s;
- tt t;
- unsigned int u;
-} ttt;
-
-ttt X = {
-    4,
-       { 0 },
-	55,
-};





More information about the llvm-commits mailing list