From e29065a105342a904871437d18a4e6fab09e5bc1 Mon Sep 17 00:00:00 2001 From: Fangrui Song Date: Fri, 21 Feb 2020 18:48:53 -0800 Subject: [PATCH] [lldb][test] Fix sh_flags and sh_entsize of .debug_str.dwo sh_flags: SHF_MERGE | SHF_STRINGS | SHF_EXCLUDE sh_entsize: 1 Incorrect sh_flags or sh_entsize is an error after the assembler change made by D73999. --- lldb/test/Shell/SymbolFile/DWARF/dwp.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/Shell/SymbolFile/DWARF/dwp.s b/lldb/test/Shell/SymbolFile/DWARF/dwp.s index 659d770..7987299 100644 --- a/lldb/test/Shell/SymbolFile/DWARF/dwp.s +++ b/lldb/test/Shell/SymbolFile/DWARF/dwp.s @@ -105,7 +105,7 @@ F\I: # This deliberately excludes compile unit 4 to check test the case of a missing # split unit. .irpc I,0123 - .section .debug_str.dwo,"e",@progbits + .section .debug_str.dwo,"MSe",@progbits,1 .Lstr\I: .byte 'I', 'N', 'T', '0'+\I, 0 -- 2.7.4