[Lldb-commits] [lldb] c6799d9 - Revision 3339000e0bda696c2e29173d15958c0a4978a143 caused the Language

Jim Ingham via lldb-commits lldb-commits at lists.llvm.org
Thu May 12 14:32:06 PDT 2022


Author: Jim Ingham
Date: 2022-05-12T14:32:00-07:00
New Revision: c6799d98435df03872b960d95fcfa32718971bd6

URL: https://github.com/llvm/llvm-project/commit/c6799d98435df03872b960d95fcfa32718971bd6
DIFF: https://github.com/llvm/llvm-project/commit/c6799d98435df03872b960d95fcfa32718971bd6.diff

LOG: Revision 3339000e0bda696c2e29173d15958c0a4978a143 caused the Language
plugin to get queried earlier on in the startup, so that for .s files
we call the language "unknown" not "not-loaded".  This test was checking
against that string, so I fixed it for the change.

Added: 
    

Modified: 
    lldb/test/Shell/SymbolFile/DWARF/x86/dwp.s

Removed: 
    


################################################################################
diff  --git a/lldb/test/Shell/SymbolFile/DWARF/x86/dwp.s b/lldb/test/Shell/SymbolFile/DWARF/x86/dwp.s
index c5f89b04a18dc..a921641bcec54 100644
--- a/lldb/test/Shell/SymbolFile/DWARF/x86/dwp.s
+++ b/lldb/test/Shell/SymbolFile/DWARF/x86/dwp.s
@@ -10,7 +10,7 @@
 # CHECK: (INT3) A = 3
 
 # CHECK-LABEL: image lookup -v -n F1
-# CHECK: CompileUnit: id = {0x00000001}, file = "1.c", language = "<not loaded>"
+# CHECK: CompileUnit: id = {0x00000001}, file = "1.c", language = "unknown"
 # CHECK: Function: {{.*}}, name = "F1", range = [0x0000000000000001-0x0000000000000002)
 # CHECK: Variable: {{.*}}, name = "x", type = "int", valid ranges = <block>, location = [0x0000000000000001, 0x0000000000000002) -> DW_OP_reg1 RDX
 


        


More information about the lldb-commits mailing list