Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1  -emit-llvm -g %s -o %t
      2 // RUN: grep DW_TAG_enumeration_type %t
      3 // Radar 8195980
      4 
      5 enum vtag {
      6   VT_ONE
      7 };
      8 
      9 int foo(int i) {
     10   return i == VT_ONE;
     11 }
     12