Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2357)

Unified Diff: src/compiler/mips/code-generator-mips.cc

Issue 2434973002: MIPS: Fix several failures due to unsupported Sed and Seh innstructions on MIPS32R1 (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/mips/macro-assembler-mips.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/mips/code-generator-mips.cc
diff --git a/src/compiler/mips/code-generator-mips.cc b/src/compiler/mips/code-generator-mips.cc
index 361cf92a413f9c644b26b1f311af96f34ce18d4a..12d3e75a05e193f874cc01e6babdebd79559d731 100644
--- a/src/compiler/mips/code-generator-mips.cc
+++ b/src/compiler/mips/code-generator-mips.cc
@@ -1394,10 +1394,10 @@ CodeGenerator::CodeGenResult CodeGenerator::AssembleArchInstruction(
// ... more basic instructions ...
case kMipsSeb:
- __ seb(i.OutputRegister(), i.InputRegister(0));
+ __ Seb(i.OutputRegister(), i.InputRegister(0));
break;
case kMipsSeh:
- __ seh(i.OutputRegister(), i.InputRegister(0));
+ __ Seh(i.OutputRegister(), i.InputRegister(0));
break;
case kMipsLbu:
__ lbu(i.OutputRegister(), i.MemoryOperand());
« no previous file with comments | « no previous file | src/mips/macro-assembler-mips.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698