LLVM r236120 renamed debug info IR constructs to use a `DI` prefix, now that the `DIDescriptor` hierarchy has been gone for about a week. This commit was generated using the rename-md-di-nodes.sh upgrade script attached to PR23080, followed by running clang-format-diff.py on the `lib/` portion of the patch. llvm-svn: 236121
12 lines
349 B
C
12 lines
349 B
C
// RUN: %clang_cc1 -emit-llvm -g %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 };
|