Remove migrated test.
authorEric Christopher <echristo@apple.com>
Fri, 19 Aug 2011 23:18:10 +0000 (23:18 +0000)
committerEric Christopher <echristo@apple.com>
Fri, 19 Aug 2011 23:18:10 +0000 (23:18 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138140 91177308-0d34-0410-b5e6-96231b3b80d8

test/FrontendC++/2007-01-02-UnboundedArray.cpp [deleted file]

diff --git a/test/FrontendC++/2007-01-02-UnboundedArray.cpp b/test/FrontendC++/2007-01-02-UnboundedArray.cpp
deleted file mode 100644 (file)
index 3103086..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-// Make sure unbounded arrays compile with debug information.
-// 
-// RUN: %llvmgcc -O0 -S -g %s
-
-// PR1068
-
-struct Object {
-  char buffer[];
-};
-
-int main(int argc, char** argv) {
-  new Object;
-  return 0;
-}