You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
371 B
12 lines
371 B
// RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited %s -o - | FileCheck %s
|
|
|
|
// CHECK: !DICompositeType(tag: DW_TAG_enumeration_type, name: "e"
|
|
// CHECK-SAME: elements: [[TEST3_ENUMS:![0-9]*]]
|
|
// CHECK: [[TEST3_ENUMS]] = !{[[TEST3_E:![0-9]*]]}
|
|
// CHECK: [[TEST3_E]] = !DIEnumerator(name: "E", value: -1)
|
|
|
|
enum e;
|
|
void func(enum e *p) {
|
|
}
|
|
enum e { E = -1 };
|