Revision: 19395
Author:   [email protected]
Date:     Fri Feb 14 21:28:22 2014 UTC
Log:      MIPS: build fix for r19380

Port r19381 (5476e11b)

BUG=
[email protected]

Review URL: https://codereview.chromium.org/163953014
http://code.google.com/p/v8/source/detail?r=19395

Modified:
 /branches/bleeding_edge/src/mips/code-stubs-mips.cc

=======================================
--- /branches/bleeding_edge/src/mips/code-stubs-mips.cc Fri Feb 14 17:45:53 2014 UTC +++ /branches/bleeding_edge/src/mips/code-stubs-mips.cc Fri Feb 14 21:28:22 2014 UTC
@@ -5708,8 +5708,12 @@
   MemOperand context_restore_operand(
       fp, (2 + FCA::kContextSaveIndex) * kPointerSize);
   // Stores return the first js argument.
-  int return_value_offset =
-      2 + (is_store ? FCA::kArgsLength : FCA::kReturnValueOffset);
+  int return_value_offset = 0;
+  if (is_store) {
+    return_value_offset = 2 + FCA::kArgsLength;
+  } else {
+    return_value_offset = 2 + FCA::kReturnValueOffset;
+  }
   MemOperand return_value_operand(fp, return_value_offset * kPointerSize);

   __ CallApiFunctionAndReturn(api_function_address,

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to