https://github.com/kastiglione created https://github.com/llvm/llvm-project/pull/174821
None >From c146c54bd488dbd1d788f16a8d6132840b83a053 Mon Sep 17 00:00:00 2001 From: Dave Lee <[email protected]> Date: Wed, 7 Jan 2026 10:18:35 -0800 Subject: [PATCH] [lldb] Match #undef to preceding #define --- lldb/source/DataFormatters/FormatterBytecode.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lldb/source/DataFormatters/FormatterBytecode.cpp b/lldb/source/DataFormatters/FormatterBytecode.cpp index 714de74abcb3c..c56d0b2a55e5b 100644 --- a/lldb/source/DataFormatters/FormatterBytecode.cpp +++ b/lldb/source/DataFormatters/FormatterBytecode.cpp @@ -27,7 +27,7 @@ std::string toString(FormatterBytecode::OpCodes op) { return s ? s : #NAME; \ } #include "FormatterBytecode.def" -#undef DEFINE_SIGNATURE +#undef DEFINE_OPCODE } return llvm::utostr(op); } @@ -38,7 +38,7 @@ std::string toString(FormatterBytecode::Selectors sel) { case ID: \ return "@" #NAME; #include "FormatterBytecode.def" -#undef DEFINE_SIGNATURE +#undef DEFINE_SELECTOR } return "@" + llvm::utostr(sel); } _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
