[Lldb-commits] [lldb] 1e08193 - Fix for Modify TypePrinter to differentiate between anonymous struct and unnamed struct
Shafik Yaghmour via lldb-commits
lldb-commits at lists.llvm.org
Thu Feb 18 17:57:51 PST 2021
Author: Shafik Yaghmour
Date: 2021-02-18T17:57:40-08:00
New Revision: 1e0819395657a9306f609849dcd3be9d7fb0c894
URL: https://github.com/llvm/llvm-project/commit/1e0819395657a9306f609849dcd3be9d7fb0c894
DIFF: https://github.com/llvm/llvm-project/commit/1e0819395657a9306f609849dcd3be9d7fb0c894.diff
LOG: Fix for Modify TypePrinter to differentiate between anonymous struct and unnamed struct
One of the lldb tests needed additional fixes.
Added:
Modified:
lldb/test/Shell/SymbolFile/DWARF/debug-types-missing-signature.test
Removed:
################################################################################
diff --git a/lldb/test/Shell/SymbolFile/DWARF/debug-types-missing-signature.test b/lldb/test/Shell/SymbolFile/DWARF/debug-types-missing-signature.test
index 8dddea063578..8bdc2219cc1c 100644
--- a/lldb/test/Shell/SymbolFile/DWARF/debug-types-missing-signature.test
+++ b/lldb/test/Shell/SymbolFile/DWARF/debug-types-missing-signature.test
@@ -22,5 +22,5 @@ PRINTEC: use of undeclared identifier 'EC'
RUN: %lldb %t -b -o "target variable a e ec" | FileCheck --check-prefix=VARS %s
VARS: (const (unnamed struct)) a = {}
-VARS: (const (anonymous enum)) e = 0x1
-VARS: (const (anonymous enum)) ec = 0x1
+VARS: (const (unnamed enum)) e = 0x1
+VARS: (const (unnamed enum)) ec = 0x1
More information about the lldb-commits
mailing list