Remove migrated test.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138140 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher 2011-08-19 23:18:10 +00:00
parent a17f669ef5
commit 5c7ee3f5b2

View File

@ -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;
}