3d1dcd9bfd
http://llvm.org/svn/llvm-project/cfe/branches/release_28@114020 Approved by: rpaulo (mentor)
12 lines
167 B
C
12 lines
167 B
C
// RUN: %clang_cc1 -emit-llvm -g %s -o %t
|
|
// RUN: grep DW_TAG_enumeration_type %t
|
|
// Radar 8195980
|
|
|
|
enum vtag {
|
|
VT_ONE
|
|
};
|
|
|
|
int foo(int i) {
|
|
return i == VT_ONE;
|
|
}
|