From: David Blaikie Date: Mon, 22 Aug 2016 17:49:50 +0000 (+0000) Subject: Remove redundant test X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9ca8bbb4a8f8acdfa29f48ca17432eb10cd6e413;p=clang Remove redundant test test/CodeGenCXX/debug-info-zero-length-arrays.cpp tests this functionality more comprehensively git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@279444 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/debug-info-flex-member.cpp b/test/CodeGenCXX/debug-info-flex-member.cpp deleted file mode 100644 index 8dcdaeb935..0000000000 --- a/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;