File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
source/Plugins/Disassembler/LLVMC Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ enum class LLDBLog : Log::MaskType {
5050 OnDemand = Log::ChannelFlag<31 >,
5151 Source = Log::ChannelFlag<32 >,
5252 Disassembler = Log::ChannelFlag<33 >,
53- LLVM_MARK_AS_BITMASK_ENUM (OnDemand ),
53+ LLVM_MARK_AS_BITMASK_ENUM (Disassembler ),
5454};
5555
5656LLVM_ENABLE_BITMASK_ENUMS_IN_NAMESPACE ();
Original file line number Diff line number Diff line change @@ -1146,7 +1146,7 @@ class InstructionLLVMC : public lldb_private::Instruction {
11461146 }
11471147 }
11481148
1149- if (Log *log = GetLog (LLDBLog::Disassembler)) {
1149+ if (Log *log = GetLog (LLDBLog::Process | LLDBLog:: Disassembler)) {
11501150 StreamString ss;
11511151
11521152 ss.Printf (" [%s] expands to %zu operands:\n " , operands_string,
You can’t perform that action at this time.
0 commit comments