brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.5 KiB · 084d0fc Raw
38 lines · plain
1; RUN: llc < %s -mtriple=xcore-unknown-unknown -O0 | FileCheck %s2 3; target datalayout = "e-m:e-p:32:32-i1:8:32-i8:8:32-i16:16:32-i64:32-f64:32-a:0:32-n32"4; target triple = "xcore"5 6; CHECK-LABEL: f7; CHECK: entsp [[S:[0-9]+]]8; ...the prologue...9; CHECK: .loc 1 2 0 prologue_end      # test.c:210; CHECK: add r0, r0, 111; CHECK: retsp [[S]]12define i32 @f(i32 %a) !dbg !4 {13entry:14  %a.addr = alloca i32, align 415  store i32 %a, ptr %a.addr, align 416  call void @llvm.dbg.declare(metadata ptr %a.addr, metadata !11, metadata !DIExpression()), !dbg !1217  %0 = load i32, ptr %a.addr, align 4, !dbg !1218  %add = add nsw i32 %0, 1, !dbg !1219  ret i32 %add, !dbg !1220}21 22declare void @llvm.dbg.declare(metadata, metadata, metadata)23 24!llvm.dbg.cu = !{!0}25!llvm.module.flags = !{!9, !10}26!0 = distinct !DICompileUnit(language: DW_LANG_C99, isOptimized: false, emissionKind: FullDebug, file: !1, enums: !2, retainedTypes: !2, globals: !2, imports: !2)27!1 = !DIFile(filename: "test.c", directory: "")28!2 = !{}29!4 = distinct !DISubprogram(name: "f", line: 2, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, unit: !0, scopeLine: 2, file: !1, scope: !1, type: !6, retainedNodes: !2)30!6 = !DISubroutineType(types: !7)31!7 = !{!8, !8}32!8 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)33!9 = !{i32 2, !"Dwarf Version", i32 4}34!10 = !{i32 2, !"Debug Info Version", i32 3}35!11 = !DILocalVariable(name: "a", line: 2, arg: 1, scope: !4, file: !1, type: !8)36!12 = !DILocation(line: 2, scope: !4)37 38