Update analyzer build.
[clang.git] / test / CodeGen / debug-info-enum.c
blobb4a1ce0d3a221ed6f71838619ef1834209513bf7
1 // RUN: %clang_cc1 -emit-llvm -g %s -o %t
2 // RUN: grep DW_TAG_enumeration_type %t
3 // Radar 8195980
5 enum vtag {
6 VT_ONE
7 };
9 int foo(int i) {
10 return i == VT_ONE;