summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavel Labath <labath@google.com>2015-03-18 09:57:10 +0000
committerPavel Labath <labath@google.com>2015-03-18 09:57:10 +0000
commit61984d39d57245db68a5b08d76e268617cf9e43c (patch)
tree6d790804d2be868d60be46b5a7b80b3d9e34aa3b
parent29e5937cd9aff35b701dc866aaff5f35689e8581 (diff)
downloadbcm5719-llvm-61984d39d57245db68a5b08d76e268617cf9e43c.tar.gz
bcm5719-llvm-61984d39d57245db68a5b08d76e268617cf9e43c.zip
Fix a typo in EmulateInstructioinMIPS64
llvm-svn: 232620
-rw-r--r--lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp b/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp
index e2af0fd1e7a..ea057caeec7 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;
OpenPOWER on IntegriCloud