diff options
author | David Blaikie <dblaikie@gmail.com> | 2016-08-22 17:49:50 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2016-08-22 17:49:50 +0000 |
commit | c41fcaf8aa1e0fce242fcf0af55d1d8113e67bcb (patch) | |
tree | 5ccdcbd2475b2697789b806a6eadf59a666fd44a /clang/test/CodeGenCXX/debug-info-flex-member.cpp | |
parent | 353052698a4ad37d790211f977e353a4a130112d (diff) | |
download | bcm5719-llvm-c41fcaf8aa1e0fce242fcf0af55d1d8113e67bcb.tar.gz bcm5719-llvm-c41fcaf8aa1e0fce242fcf0af55d1d8113e67bcb.zip |
Remove redundant test
test/CodeGenCXX/debug-info-zero-length-arrays.cpp tests this
functionality more comprehensively
llvm-svn: 279444
Diffstat (limited to 'clang/test/CodeGenCXX/debug-info-flex-member.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/debug-info-flex-member.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/clang/test/CodeGenCXX/debug-info-flex-member.cpp b/clang/test/CodeGenCXX/debug-info-flex-member.cpp deleted file mode 100644 index 8dcdaeb935d..00000000000 --- a/clang/test/CodeGenCXX/debug-info-flex-member.cpp +++ /dev/null @@ -1,9 +0,0 @@ -// RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited -triple x86_64-apple-darwin %s -o - | FileCheck %s - -// CHECK: !DISubrange(count: -1) - -struct StructName { - int member[]; -}; - -struct StructName SN; |