[Lldb-commits] [lldb] [LLDB][NVIDIA] Add Disassembler log channel (PR #148290)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Fri Jul 11 13:30:36 PDT 2025
================
@@ -49,6 +49,7 @@ enum class LLDBLog : Log::MaskType {
Watchpoints = Log::ChannelFlag<30>,
OnDemand = Log::ChannelFlag<31>,
Source = Log::ChannelFlag<32>,
+ Disassembler = Log::ChannelFlag<33>,
LLVM_MARK_AS_BITMASK_ENUM(OnDemand),
----------------
clayborg wrote:
I think we need to update this with the last enum. Someone forgot to do it when they added the `Source` enum. So this line should be:
```
LLVM_MARK_AS_BITMASK_ENUM(Disassembler),
```
https://github.com/llvm/llvm-project/pull/148290
More information about the lldb-commits
mailing list