Remove migrated test.

llvm-svn: 138140
This commit is contained in:
Eric Christopher 2011-08-19 23:18:10 +00:00
parent 925d593b60
commit 2c16fef036
1 changed files with 0 additions and 14 deletions

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