Douglas Katzman | 3459ce2 | 2015-10-08 04:24:12 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited -triple x86_64-apple-darwin %s -o - | FileCheck %s |
Eric Christopher | 8b3304d | 2012-05-22 18:04:48 +0000 | [diff] [blame] | 2 | |
Duncan P. N. Exon Smith | 9dd4e4e | 2015-04-29 16:40:08 +0000 | [diff] [blame] | 3 | // CHECK: !DISubrange(count: -1) |
Eric Christopher | 8b3304d | 2012-05-22 18:04:48 +0000 | [diff] [blame] | 4 | |
5 | struct StructName { | ||||
6 | int member[]; | ||||
7 | }; | ||||
8 | |||||
9 | struct StructName SN; |