Fix a typo in EmulateInstructioinMIPS64

llvm-svn: 232620
This commit is contained in:
Pavel Labath 2015-03-18 09:57:10 +00:00
parent 29e5937cd9
commit 61984d39d5
1 changed files with 1 additions and 1 deletions

View File

@ -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;