Currently, clang does not emit debuginfo for the switch stmt
case value if it is an enum value. For example,
$ cat test.c
enum { AA = 1, BB = 2 };
int func1(int a) {
switch(a) {
case AA: return 10;
case BB: return 11;
default: break;
}
return 0;
}
$ llvm-dwarfdump test.o | grep AA
$
Note that gcc does emit debuginfo for the same test case.
This patch added such a support with similar implementation
to CodeGenFunction::EmitDeclRefExprDbgValue(). With this patch,
$ clang -g -c test.c
$ llvm-dwarfdump test.o | grep AA
DW_AT_name ("AA")
$
Differential Revision: https://reviews.llvm.org/D134705
31 lines
860 B
C
31 lines
860 B
C
// RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited %s -o - | FileCheck %s
|
|
|
|
enum { A = 1 };
|
|
int func1(int a) {
|
|
switch(a) {
|
|
case A: return 10;
|
|
default: break;
|
|
}
|
|
return 0;
|
|
}
|
|
// CHECK: !DICompositeType(tag: DW_TAG_enumeration_type
|
|
// CHECK-SAME: elements: [[TEST1_ENUMS:![0-9]*]]
|
|
// CHECK: [[TEST1_ENUMS]] = !{[[TEST1_E:![0-9]*]]}
|
|
// CHECK: [[TEST1_E]] = !DIEnumerator(name: "A", value: 1)
|
|
|
|
// Test ImplicitCast of switch case enum value
|
|
enum { B = 2 };
|
|
typedef unsigned long long __t1;
|
|
typedef __t1 __t2;
|
|
int func2(__t2 a) {
|
|
switch(a) {
|
|
case B: return 10;
|
|
default: break;
|
|
}
|
|
return 0;
|
|
}
|
|
// CHECK: !DICompositeType(tag: DW_TAG_enumeration_type
|
|
// CHECK-SAME: elements: [[TEST2_ENUMS:![0-9]*]]
|
|
// CHECK: [[TEST2_ENUMS]] = !{[[TEST2_E:![0-9]*]]}
|
|
// CHECK: [[TEST2_E]] = !DIEnumerator(name: "B", value: 2)
|