Home | History | Annotate | Download | only in X86
      1 ; RUN: llc -mtriple=x86_64-apple-darwin %s -o - -filetype=asm | FileCheck %s
      2 
      3 ; Generated from:
      4 ; asm(
      5 ;       ".file 1 \"A.asm\"\n"
      6 ;       ".file 2 \"B.asm\"\n"
      7 ;       ".loc  1 111\n"
      8 ;       ".text\n"
      9 ;       ".globl _bar\n"
     10 ;       "_bar:\n"
     11 ;       ".loc 2 222\n"
     12 ;       "\tret\n"
     13 ;     );
     14 ;  
     15 ; void bar();
     16 ;  
     17 ; void foo() {
     18 ;   bar();
     19 ; }
     20 
     21 ; CHECK: .file 1 "A.asm"
     22 ; CHECK: .file 2 "B.asm"
     23 ; CHECK: .loc  1 111
     24 ; CHECK: .loc  2 222
     25 ; CHECK: .file 3 "test.c"
     26 ; CHECK: .loc  3 14 0  
     27 
     28 target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
     29 target triple = "x86_64-apple-macosx"
     30 
     31 module asm ".file 1 \22A.asm\22"
     32 module asm ".file 2 \22B.asm\22"
     33 module asm ".loc  1 111"
     34 module asm ".text"
     35 module asm ".globl _bar"
     36 module asm "_bar:"
     37 module asm ".loc 2 222"
     38 module asm "\09ret"
     39 
     40 ; Function Attrs: nounwind ssp uwtable
     41 define void @foo() !dbg !4 {
     42 entry:
     43   call void (...) @bar(), !dbg !11
     44   ret void, !dbg !12
     45 }
     46 
     47 declare void @bar(...)
     48 
     49 !llvm.dbg.cu = !{!0}
     50 !llvm.module.flags = !{!7, !8, !9}
     51 !llvm.ident = !{!10}
     52 
     53 !0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 3.8.0 (trunk 256963)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
     54 !1 = !DIFile(filename: "test.c", directory: "/Volumes/Data/radar/22690666")
     55 !2 = !{}
     56 !4 = distinct !DISubprogram(name: "foo", scope: !1, file: !1, line: 14, type: !5, isLocal: false, isDefinition: true, scopeLine: 14, isOptimized: false, unit: !0, variables: !2)
     57 !5 = !DISubroutineType(types: !6)
     58 !6 = !{null}
     59 !7 = !{i32 2, !"Dwarf Version", i32 2}
     60 !8 = !{i32 2, !"Debug Info Version", i32 3}
     61 !9 = !{i32 1, !"PIC Level", i32 2}
     62 !10 = !{!"clang version 3.8.0 (trunk 256963)"}
     63 !11 = !DILocation(line: 15, column: 3, scope: !4)
     64 !12 = !DILocation(line: 16, column: 1, scope: !4)
     65