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

Unified Diff: runtime/vm/disassembler_mips.cc

Issue 802023002: Fix SLTIU instruction in MIPS assembler, disassembler, and simulator. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years 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
Index: runtime/vm/disassembler_mips.cc
===================================================================
--- runtime/vm/disassembler_mips.cc (revision 42354)
+++ runtime/vm/disassembler_mips.cc (working copy)
@@ -718,7 +718,7 @@
break;
}
case SLTIU: {
- Format(instr, "sltu 'rt, 'rs, 'immu");
+ Format(instr, "sltiu 'rt, 'rs, 'imms");
break;
}
case SH: {

Powered by Google App Engine
This is Rietveld 408576698