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

Unified Diff: test/cctest/test-macro-assembler-mips64.cc

Issue 1534183002: MIPS64: r6 compact branch optimization. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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
« src/mips64/simulator-mips64.cc ('K') | « test/cctest/test-disasm-mips64.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-macro-assembler-mips64.cc
diff --git a/test/cctest/test-macro-assembler-mips64.cc b/test/cctest/test-macro-assembler-mips64.cc
index fa045a25633452e7bfc0e7c00b5c6cb1cfa0d1c2..319947df06f4a127e2f0e2f8edac91b4c9d976d2 100644
--- a/test/cctest/test-macro-assembler-mips64.cc
+++ b/test/cctest/test-macro-assembler-mips64.cc
@@ -240,9 +240,6 @@ TEST(jump_tables4) {
__ daddiu(sp, sp, -8);
__ sd(ra, MemOperand(sp));
- if ((masm->pc_offset() & 7) == 0) {
- __ nop();
- }
__ mov(v0, zero_reg);
@@ -255,6 +252,7 @@ TEST(jump_tables4) {
__ addiu(v0, v0, 1);
}
+ __ Align(8);
Label done;
{
__ BlockTrampolinePoolFor(kNumCases * 2 + 6);
« src/mips64/simulator-mips64.cc ('K') | « test/cctest/test-disasm-mips64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698