diff options
author | Eric Christopher <echristo@apple.com> | 2011-08-19 23:18:10 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-08-19 23:18:10 +0000 |
commit | 5c7ee3f5b2c049f80432d49fe13e148148451131 (patch) | |
tree | 21515151a61f935ea0b7d6b19b6ba266c62e257d /test/FrontendC++/2007-01-02-UnboundedArray.cpp | |
parent | a17f669ef56022a9fdab4689ef20f64a2667ea83 (diff) |
Remove migrated test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138140 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC++/2007-01-02-UnboundedArray.cpp')
-rw-r--r-- | test/FrontendC++/2007-01-02-UnboundedArray.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/test/FrontendC++/2007-01-02-UnboundedArray.cpp b/test/FrontendC++/2007-01-02-UnboundedArray.cpp deleted file mode 100644 index 310308694b..0000000000 --- a/test/FrontendC++/2007-01-02-UnboundedArray.cpp +++ /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; -} |