blob: b4a1ce0d3a221ed6f71838619ef1834209513bf7 [file] [log] [blame]
Devang Patel6237cea2010-08-23 22:07:25 +00001// RUN: %clang_cc1 -emit-llvm -g %s -o %t
2// RUN: grep DW_TAG_enumeration_type %t
3// Radar 8195980
4
5enum vtag {
6 VT_ONE
7};
8
9int foo(int i) {
10 return i == VT_ONE;
11}