diff --git a/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp b/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp index e2af0fd1e7ad..ea057caeec7f 100644 --- a/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp +++ b/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp @@ -432,7 +432,7 @@ EmulateInstructionMIPS64::Emulate_load (const uint32_t opcode) Context context_t; /* We are looking for "saved register" being restored from stack */ - if (!n == 29 || !nonvolatile_reg_p(t)) + if (!(n == 29) || !nonvolatile_reg_p(t)) return false; context_t.type = eContextRegisterLoad;