1*0a6a1f1dSLionel Sambuc // RUN: %clang_cc1 -emit-llvm -g %s -o - | FileCheck %s 2*0a6a1f1dSLionel Sambuc 3*0a6a1f1dSLionel Sambuc // CHECK: [[TEST3_ENUMS:![0-9]*]], null, null, null} ; [ DW_TAG_enumeration_type ] [e] 4*0a6a1f1dSLionel Sambuc // CHECK: [[TEST3_ENUMS]] = !{[[TEST3_E:![0-9]*]]} 5*0a6a1f1dSLionel Sambuc // CHECK: [[TEST3_E]] = !{!"0x28\00E\00-1"} ; [ DW_TAG_enumerator ] [E :: -1] 6*0a6a1f1dSLionel Sambuc 7*0a6a1f1dSLionel Sambuc enum e; func(enum e * p)8*0a6a1f1dSLionel Sambucvoid func(enum e *p) { 9*0a6a1f1dSLionel Sambuc } 10*0a6a1f1dSLionel Sambuc enum e { E = -1 }; 11