Revision: 23358
Author:   [email protected]
Date:     Mon Aug 25 13:47:14 2014 UTC
Log:      Correctly return value. Fix for r23355.

[email protected]

Review URL: https://codereview.chromium.org/500993002
https://code.google.com/p/v8/source/detail?r=23358

Modified:
 /branches/bleeding_edge/src/code-stubs.h

=======================================
--- /branches/bleeding_edge/src/code-stubs.h    Mon Aug 25 13:09:02 2014 UTC
+++ /branches/bleeding_edge/src/code-stubs.h    Mon Aug 25 13:47:14 2014 UTC
@@ -1485,7 +1485,7 @@

   bool save_doubles() const { return SaveDoublesBits::decode(minor_key_); }
 #ifdef _WIN64
-  int result_size() const { ResultSizeBits::decode(minor_key_); }
+  int result_size() const { return ResultSizeBits::decode(minor_key_); }
 #endif  // _WIN64

   bool NeedsImmovableCode();

--
--
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/d/optout.

Reply via email to