Reviewers: vogelheim,

Description:
Use correct BitField arguments in CEntryStub.

[email protected]

Please review this at https://codereview.chromium.org/494543003/

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 ac1bd560e58ec32bf0d669a93779a89cf880543c..9f18772938f0658ef94434974ed343a7cb4aecf1 100644
--- a/src/code-stubs.h
+++ b/src/code-stubs.h
@@ -1491,7 +1491,7 @@ class CEntryStub : public PlatformCodeStub {
   bool NeedsImmovableCode();

   class SaveDoublesBits : public BitField<bool, 0, 1> {};
-  class ResultSizeBits : public BitField<int, 3, 1> {};
+  class ResultSizeBits : public BitField<int, 1, 3> {};
 };




--
--
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