mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-16 18:35:53 +00:00

Summary: The correct spelling is "DWARF", the debugging format, not "DWARG". The typo is in a (not executed by lit) comment in a test file, so fixing it does not result in any functional change. Test Plan: check-llvm, just in case git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@332878 91177308-0d34-0410-b5e6-96231b3b80d8
45 lines
1.6 KiB
LLVM
45 lines
1.6 KiB
LLVM
; RUN: llc -mtriple=x86_64-unknown-linux-gnu %s -o %t -filetype=obj
|
|
; RUN: llvm-dwarfdump -debug-info %t | FileCheck %s
|
|
;
|
|
; Test the DW_AT_producer DWARF attribute.
|
|
; When producer and flags are both given in DIComileUnit, set DW_AT_producer
|
|
; as two values combined.
|
|
;
|
|
; The test splits into two parts, this is LLVM part. The frontend part can be
|
|
; found at llvm/tools/clang/test/Driver/debug-options.c.
|
|
;
|
|
; Generated and reduced from:
|
|
; clang++ -g -grecord-gcc-switches test.cc -S -llvm-emit -o -
|
|
;
|
|
; test.cc:
|
|
; int main() {
|
|
; return 0;
|
|
; }
|
|
|
|
; CHECK: DW_AT_producer
|
|
; CHECK-SAME: "clang++ -g -grecord-gcc-switches test.cc -S -emit-llvm -o -"
|
|
target triple = "x86_64-unknown-linux-gnu"
|
|
|
|
define i32 @main() !dbg !6 {
|
|
entry:
|
|
%retval = alloca i32, align 4
|
|
store i32 0, i32* %retval, align 4
|
|
ret i32 0, !dbg !10
|
|
}
|
|
|
|
!llvm.dbg.cu = !{!0}
|
|
!llvm.module.flags = !{!3, !4}
|
|
!llvm.ident = !{!5}
|
|
|
|
!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang++", isOptimized: false, flags: "-g -grecord-gcc-switches test.cc -S -emit-llvm -o -", runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
|
|
!1 = !DIFile(filename: "test.cc", directory: "d")
|
|
!2 = !{}
|
|
!3 = !{i32 2, !"Dwarf Version", i32 4}
|
|
!4 = !{i32 2, !"Debug Info Version", i32 3}
|
|
!5 = !{!"clang"}
|
|
!6 = distinct !DISubprogram(name: "main", scope: !1, file: !1, line: 4, type: !7, isLocal: false, isDefinition: true, scopeLine: 4, flags: DIFlagPrototyped, isOptimized: false, unit: !0, retainedNodes: !2)
|
|
!7 = !DISubroutineType(types: !8)
|
|
!8 = !{!9}
|
|
!9 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
|
|
!10 = !DILocation(line: 5, column: 3, scope: !6)
|