2015-10-08 12:24:12 +08:00
|
|
|
// RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited %s -o - | FileCheck %s
|
2013-01-08 09:54:13 +08:00
|
|
|
typedef int v4si __attribute__((__vector_size__(16)));
|
|
|
|
|
|
|
|
v4si a;
|
|
|
|
|
|
|
|
// Test that we get an array type that's also a vector out of debug.
|
2015-04-30 00:40:08 +08:00
|
|
|
// CHECK: !DICompositeType(tag: DW_TAG_array_type,
|
2015-03-04 01:25:55 +08:00
|
|
|
// CHECK-SAME: baseType: ![[INT:[0-9]+]]
|
2016-10-20 08:13:19 +08:00
|
|
|
// CHECK-SAME: size: 128
|
2015-03-04 01:25:55 +08:00
|
|
|
// CHECK-SAME: DIFlagVector
|
2015-04-30 00:40:08 +08:00
|
|
|
// CHECK: ![[INT]] = !DIBasicType(name: "int"
|