Skip to content

Commit

Permalink
[lldb/test] Update !DIModule for isysroot rename
Browse files Browse the repository at this point in the history
The isysroot field in DIModule was renamed to sysroot but the test in
LLDB wasn't updated. This fixes that.
  • Loading branch information
JDevlieghere committed Dec 21, 2019
1 parent 9f4f237 commit 3fa39c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lldb/test/Shell/SymbolFile/DWARF/compilercontext.ll
Expand Up @@ -39,8 +39,8 @@ target triple = "x86_64-apple-macosx10.14.0"
; This simulates the debug info for a Clang module.
!2 = distinct !DICompileUnit(language: DW_LANG_C99, file: !3, producer: "clang", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, nameTableKind: GNU, retainedTypes: !{!11})
!3 = !DIFile(filename: "t.c", directory: "/")
!8 = !DIModule(scope: !9, name: "SubModule", includePath: "", isysroot: "/")
!9 = !DIModule(scope: null, name: "CModule", includePath: "", isysroot: "/")
!8 = !DIModule(scope: !9, name: "SubModule", includePath: "", sysroot: "/")
!9 = !DIModule(scope: null, name: "CModule", includePath: "", sysroot: "/")
!11 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "FromSubmodule", scope: !8, file: !3, line: 1, size: 96, elements: !13)
!13 = !{!14, !16, !17}
!14 = !DIDerivedType(tag: DW_TAG_member, name: "x", scope: !11, file: !3, line: 2, baseType: !15, size: 32)
Expand Down

0 comments on commit 3fa39c3

Please sign in to comment.