1 ; RUN: llc < %s -filetype=obj | llvm-readobj - --codeview | FileCheck %s
2 ; RUN: llc < %s | llvm-mc -filetype=obj --triple=i686-windows | llvm-readobj - --codeview | FileCheck %s
4 ; Generated from the following C++ source:
5 ; enum E : int { BLAH };
8 ; CHECK: CodeViewTypes [
9 ; CHECK: FieldList (0x1000) {
10 ; CHECK-NEXT: TypeLeafKind: LF_FIELDLIST (0x1203)
11 ; CHECK-NEXT: Enumerator {
12 ; CHECK-NEXT: TypeLeafKind: LF_ENUMERATE (0x1502)
13 ; CHECK-NEXT: AccessSpecifier: Public (0x3)
14 ; CHECK-NEXT: EnumValue: 0
15 ; CHECK-NEXT: Name: BLAH
18 ; CHECK-NEXT: Enum (0x1001) {
19 ; CHECK-NEXT: TypeLeafKind: LF_ENUM (0x1507)
20 ; CHECK-NEXT: NumEnumerators: 1
21 ; CHECK-NEXT: Properties [ (0x0)
23 ; CHECK-NEXT: UnderlyingType: int (0x74)
24 ; CHECK-NEXT: FieldListType: <field list> (0x1000)
27 ; CHECK-NEXT: StringId (0x1002) {
28 ; CHECK-NEXT: TypeLeafKind: LF_STRING_ID (0x1605)
30 ; CHECK-NEXT: StringData: /foo/bar.cpp
32 ; CHECK-NEXT: UdtSourceLine (0x1003) {
33 ; CHECK-NEXT: TypeLeafKind: LF_UDT_SRC_LINE (0x1606)
34 ; CHECK-NEXT: UDT: E (0x1001)
35 ; CHECK-NEXT: SourceFile: /foo/bar.cpp (0x1002)
36 ; CHECK-NEXT: LineNumber: 1
39 source_filename = "test/DebugInfo/COFF/enum.ll"
40 target datalayout = "e-m:x-p:32:32-i64:64-f80:32-n8:16:32-a:0:32-S32"
41 target triple = "i686-pc-windows-msvc18.0.0"
43 @"\01?e@@3W4E@@A" = global i32 0, align 4, !dbg !0
46 !llvm.module.flags = !{!11, !12}
49 !0 = distinct !DIGlobalVariableExpression(var: !1, expr: !DIExpression())
50 !1 = !DIGlobalVariable(name: "e", linkageName: "\01?e@@3W4E@@A", scope: !2, file: !6, line: 2, type: !5, isLocal: false, isDefinition: true)
51 !2 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !3, producer: "clang version 3.9.0 (trunk 272790) (llvm/trunk 272813)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !10)
52 !3 = !DIFile(filename: "-", directory: "/")
54 !5 = !DICompositeType(tag: DW_TAG_enumeration_type, name: "E", file: !6, line: 1, baseType: !7, size: 32, align: 32, elements: !8)
55 !6 = !DIFile(filename: "bar.cpp", directory: "/foo")
56 !7 = !DIBasicType(name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
58 !9 = !DIEnumerator(name: "BLAH", value: 0)
60 !11 = !{i32 2, !"CodeView", i32 1}
61 !12 = !{i32 2, !"Debug Info Version", i32 3}
62 !13 = !{!"clang version 3.9.0 (trunk 272790) (llvm/trunk 272813)"}