Reviewers: vogelheim,
Description:
Correctly return value. Fix for r23355.
[email protected]
Please review this at https://codereview.chromium.org/500993002/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files (+1, -1 lines):
M src/code-stubs.h
Index: src/code-stubs.h
diff --git a/src/code-stubs.h b/src/code-stubs.h
index
138154ce918819e11bc98800ae7ba500aeb607f0..ac1bd560e58ec32bf0d669a93779a89cf880543c
100644
--- a/src/code-stubs.h
+++ b/src/code-stubs.h
@@ -1485,7 +1485,7 @@ class CEntryStub : public PlatformCodeStub {
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.