mirror of
https://github.com/intel/llvm.git
synced 2026-01-26 12:26:52 +08:00
9 lines
133 B
C++
9 lines
133 B
C++
// RUN: %clang -fverbose-asm -S -g %s -o - | grep DW_TAG_enumeration_type
|
|
|
|
int v;
|
|
enum index { MAX };
|
|
void foo(void)
|
|
{
|
|
v = MAX;
|
|
}
|