Commit a1331af5 authored by dusan.milosavljevic's avatar dusan.milosavljevic Committed by Commit bot

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}
parent addca707
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment