xref: /llvm-project/llvm/test/DebugInfo/ARM/align-func-start.ll (revision c808e665ce5a74ed37b807865b92646c4bbbbf3d)
1; RUN: llc -mtriple=arm-none-eabi < %s | FileCheck %s
2; RUN: llc -mtriple=arm-none-eabi < %s | llvm-mc --triple=arm-none-eabi -mcpu=cortex-m3
3
4; Check that, when an aligned loop is the first thing in a function, we do not
5; emit an invalid .loc directive, which is rejected by the assembly parser.
6
7; CHECK-NOT: .loc    0
8; CHECK: .loc    1 2 3 prologue_end
9; CHECK-NOT: .loc 0
10
11define dso_local void @foo() "target-cpu"="cortex-m3" !dbg !8 {
12entry:
13  br label %while.body, !dbg !11
14
15while.body:
16  br label %while.body, !dbg !11
17}
18
19
20!llvm.dbg.cu = !{!0}
21!llvm.module.flags = !{!2, !3}
22
23!0 = distinct !DICompileUnit(language: DW_LANG_C11, file: !1, producer: "clang version 20.0.0git (git@github.com:llvm/llvm-project.git 1c984b86b389bbc71c8c2988d1d707e2f32878bd)", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, splitDebugInlining: false, nameTableKind: None)
24!1 = !DIFile(filename: "test.c", directory: "/work/scratch")
25!2 = !{i32 7, !"Dwarf Version", i32 4}
26!3 = !{i32 2, !"Debug Info Version", i32 3}
27!8 = distinct !DISubprogram(name: "foo", scope: !1, file: !1, line: 1, type: !9, scopeLine: 1, flags: DIFlagPrototyped | DIFlagAllCallsDescribed, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0)
28!9 = !DISubroutineType(types: !10)
29!10 = !{null}
30!11 = !DILocation(line: 2, column: 3, scope: !8)
31