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

Unified Diff: runtime/vm/assembler_mips_test.cc

Issue 12541003: - Add a skeleton MIPS assembler, disassembler and simulator. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 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
Index: runtime/vm/assembler_mips_test.cc
===================================================================
--- runtime/vm/assembler_mips_test.cc (revision 19556)
+++ runtime/vm/assembler_mips_test.cc (working copy)
@@ -16,7 +16,8 @@
ASSEMBLER_TEST_GENERATE(Simple, assembler) {
- UNIMPLEMENTED();
+ __ ori(V0, ZR, Immediate(42));
+ __ jr(RA);
regis 2013/03/06 21:18:42 Either __ Jr(RA); or __ jr(RA); __ nop();
Ivan Posva 2013/03/07 11:03:22 Manually tracking branch delay slots in the genera
}

Powered by Google App Engine
This is Rietveld 408576698