From f82d4e2b7f2ff8dbe5edee81398743854cd296cd Mon Sep 17 00:00:00 2001 From: "zra@google.com" Date: Wed, 13 Aug 2014 19:36:18 +0000 Subject: [PATCH] Fixes typo in mips causing test failures. Review URL: https://codereview.chromium.org//475503002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39216 260f80e4-7a28-3924-810f-c04153c831b5 --- runtime/vm/intermediate_language_mips.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/vm/intermediate_language_mips.cc b/runtime/vm/intermediate_language_mips.cc index ba782cef057..b7a4c912681 100644 --- a/runtime/vm/intermediate_language_mips.cc +++ b/runtime/vm/intermediate_language_mips.cc @@ -2321,7 +2321,7 @@ class AllocateContextSlowPath : public SlowPathCode { &label, RawPcDescriptors::kOther, locs); - ASSERT(instruction_->locs()->out(0).reg() == R0); + ASSERT(instruction_->locs()->out(0).reg() == V0); compiler->RestoreLiveRegisters(instruction_->locs()); __ b(exit_label()); }