diff options
author | Pavel Labath <labath@google.com> | 2015-03-18 09:57:10 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2015-03-18 09:57:10 +0000 |
commit | 61984d39d57245db68a5b08d76e268617cf9e43c (patch) | |
tree | 6d790804d2be868d60be46b5a7b80b3d9e34aa3b | |
parent | 29e5937cd9aff35b701dc866aaff5f35689e8581 (diff) | |
download | bcm5719-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.cpp | 2 |
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; |