mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
c44b393235
The main change is to add a 'IsDecl' field to DIModule so that when IsDecl is set to true, the debug info entry generated for the module would be marked as a declaration. That way, the debugger would look up the definition of the module in the gloabl scope. Please see the comments in llvm/test/DebugInfo/X86/dimodule.ll for what the debug info entries would look like. Differential Revision: https://reviews.llvm.org/D93462
22 lines
977 B
LLVM
22 lines
977 B
LLVM
; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | FileCheck %s
|
|
; RUN: verify-uselistorder %s
|
|
|
|
; CHECK: !named = !{!0, !1, !2, !1, !3, !4}
|
|
!named = !{!0, !1, !2, !3, !4, !5}
|
|
|
|
!0 = distinct !{}
|
|
|
|
; CHECK: !1 = !DIModule(scope: !0, name: "Module")
|
|
!1 = !DIModule(scope: !0, name: "Module")
|
|
|
|
; CHECK: !2 = !DIModule(scope: !0, name: "Module", configMacros: "-DNDEBUG", includePath: "/usr/include")
|
|
!2 = !DIModule(scope: !0, name: "Module", configMacros: "-DNDEBUG", includePath: "/usr/include")
|
|
|
|
!3 = !DIModule(scope: !0, name: "Module", configMacros: "")
|
|
|
|
; CHECK: !3 = !DIModule(scope: !0, name: "Module", configMacros: "-DNDEBUG", includePath: "/usr/include", apinotes: "/tmp/m.apinotes", file: !0, line: 1)
|
|
!4 = !DIModule(scope: !0, name: "Module", configMacros: "-DNDEBUG", includePath: "/usr/include", apinotes: "/tmp/m.apinotes", file: !0, line: 1)
|
|
|
|
; CHECK: !4 = !DIModule(scope: !0, name: "Module", isDecl: true)
|
|
!5 = !DIModule(scope: !0, name: "Module", isDecl: true)
|