Update testcases for LLVM change in r231082 to use the new debug info hierarchy. llvm-svn: 231083
10 lines
181 B
C++
10 lines
181 B
C++
// RUN: %clang_cc1 -emit-llvm -g -triple x86_64-apple-darwin %s -o - | FileCheck %s
|
|
|
|
// CHECK: !MDSubrange(count: -1)
|
|
|
|
struct StructName {
|
|
int member[];
|
|
};
|
|
|
|
struct StructName SN;
|