MIPS64: Fix bug in jump table test.

TEST=test-assembler-mips64/jump_tables3
BUG=

Review URL: https://codereview.chromium.org/1011383004

Cr-Commit-Position: refs/heads/master@{#27301}
This commit is contained in:
dusan.milosavljevic 2015-03-19 05:41:57 -07:00 committed by Commit bot
parent addca70725
commit a1331af594

View File

@ -1585,7 +1585,7 @@ TEST(jump_tables3) {
__ bind(&done);
__ ld(ra, MemOperand(sp));
__ addiu(sp, sp, 8);
__ daddiu(sp, sp, 8);
__ jr(ra);
__ nop();
@ -1594,7 +1594,7 @@ TEST(jump_tables3) {
Handle<Code> code = isolate->factory()->NewCode(
desc, Code::ComputeFlags(Code::STUB), Handle<Code>());
#ifdef OBJECT_PRINT
// code->Print(std::cout);
code->Print(std::cout);
#endif
F1 f = FUNCTION_CAST<F1>(code->entry());
for (int i = 0; i < kNumCases; ++i) {