From 61984d39d57245db68a5b08d76e268617cf9e43c Mon Sep 17 00:00:00 2001 From: Pavel Labath Date: Wed, 18 Mar 2015 09:57:10 +0000 Subject: [PATCH] Fix a typo in EmulateInstructioinMIPS64 llvm-svn: 232620 --- lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp b/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp index e2af0fd..ea057ca 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; -- 2.7.4