Home | History | Annotate | Download | only in Generic
      1 ; RUN: llc -debug -dag-dump-verbose < %s 2>&1 | FileCheck %s
      2 ; REQUIRES: asserts
      3 
      4 ; CHECK: t{{[0-9]+}}: f64 = ConstantFP<1.500000e+00>test.c:3:5
      5 
      6 define double @f() !dbg !4 {
      7 entry:
      8   ret double 1.500000e+00, !dbg !10
      9 }
     10 
     11 !llvm.dbg.cu = !{!0}
     12 !llvm.module.flags = !{!8, !9}
     13 
     14 !0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "", isOptimized: false, emissionKind: FullDebug)
     15 !1 = !DIFile(filename: "test.c", directory: "/home/user/clang-llvm/build")
     16 !2 = !{}
     17 !4 = distinct !DISubprogram(name: "f", scope: !1, file: !1, line: 1, type: !5, isLocal: false, isDefinition: true, scopeLine: 2, flags: DIFlagPrototyped, isOptimized: false, unit: !0, variables: !2)
     18 !5 = !DISubroutineType(types: !6)
     19 !6 = !{!7}
     20 !7 = !DIBasicType(name: "double", size: 64, align: 64, encoding: DW_ATE_float)
     21 !8 = !{i32 2, !"Dwarf Version", i32 4}
     22 !9 = !{i32 2, !"Debug Info Version", i32 3}
     23 !10 = !DILocation(line: 3, column: 5, scope: !4)
     24