[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / DebugInfo / MSP430 / global-var.ll
blob1941b33846dc1ad32d4769dc284dba06f5f8f92e
1 ; RUN: llc --filetype=obj -o %t < %s
2 ; RUN: llvm-dwarfdump --debug-info %t | FileCheck %s
3 ; RUN: llvm-dwarfdump --verify %t
5 ; CHECK:      DW_TAG_variable
6 ; CHECK-NEXT:   DW_AT_name      ("global_var")
7 ; CHECK-NEXT:   DW_AT_type      ({{0x[0-9]+}} "char")
8 ; CHECK-NEXT:   DW_AT_external  (true)
9 ; CHECK-NEXT:   DW_AT_decl_file ("/tmp{{[/\\]}}global-var.c")
10 ; CHECK-NEXT:   DW_AT_decl_line (1)
11 ; CHECK-NEXT:   DW_AT_location  (DW_OP_addr 0x0)
13 ; ModuleID = 'global-var.c'
14 source_filename = "global-var.c"
15 target datalayout = "e-m:e-p:16:16-i32:16-i64:16-f32:16-f64:16-a:8-n8:16-S16"
16 target triple = "msp430"
18 @global_var = dso_local global i8 42, align 1, !dbg !0
20 ; Function Attrs: noinline nounwind optnone
21 define dso_local i16 @main() #0 !dbg !10 {
22 entry:
23   ret i16 0, !dbg !15
26 attributes #0 = { noinline nounwind optnone "frame-pointer"="none" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" }
28 !llvm.dbg.cu = !{!2}
29 !llvm.module.flags = !{!6, !7, !8}
30 !llvm.ident = !{!9}
32 !0 = !DIGlobalVariableExpression(var: !1, expr: !DIExpression())
33 !1 = distinct !DIGlobalVariable(name: "global_var", scope: !2, file: !3, line: 1, type: !5, isLocal: false, isDefinition: true)
34 !2 = distinct !DICompileUnit(language: DW_LANG_C99, file: !3, producer: "clang version 14.0.0 (https://github.com/llvm/llvm-project ...)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, globals: !4, splitDebugInlining: false, nameTableKind: None)
35 !3 = !DIFile(filename: "global-var.c", directory: "/tmp")
36 !4 = !{!0}
37 !5 = !DIBasicType(name: "char", size: 8, encoding: DW_ATE_signed_char)
38 !6 = !{i32 7, !"Dwarf Version", i32 4}
39 !7 = !{i32 2, !"Debug Info Version", i32 3}
40 !8 = !{i32 1, !"wchar_size", i32 2}
41 !9 = !{!"clang version 14.0.0 (https://github.com/llvm/llvm-project ...)"}
42 !10 = distinct !DISubprogram(name: "main", scope: !3, file: !3, line: 2, type: !11, scopeLine: 2, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !14)
43 !11 = !DISubroutineType(types: !12)
44 !12 = !{!13}
45 !13 = !DIBasicType(name: "int", size: 16, encoding: DW_ATE_signed)
46 !14 = !{}
47 !15 = !DILocation(line: 2, column: 13, scope: !10)