]> granicus.if.org Git - clang/commitdiff
Remove redundant test
authorDavid Blaikie <dblaikie@gmail.com>
Mon, 22 Aug 2016 17:49:50 +0000 (17:49 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Mon, 22 Aug 2016 17:49:50 +0000 (17:49 +0000)
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

test/CodeGenCXX/debug-info-flex-member.cpp [deleted file]

diff --git a/test/CodeGenCXX/debug-info-flex-member.cpp b/test/CodeGenCXX/debug-info-flex-member.cpp
deleted file mode 100644 (file)
index 8dcdaeb..0000000
+++ /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;