Reviewers: Rodolph Perfetta (ARM), ulan,

Message:
Committed patchset #1 manually as r18877 (presubmit successful).

Description:
A64: Ensure String::kContainsCachedArrayIndexMask is a uint32 constant.

BUG=
[email protected], [email protected]

Committed: https://code.google.com/p/v8/source/detail?r=18877

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

SVN Base: https://v8.googlecode.com/svn/branches/experimental/a64

Affected files (+1, -1 lines):
  M src/objects.h


Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index 8c3675982bf0b2eec2549a35587fbb90365ac48e..f3a8e849671b67fc67a3ad1f50ac3e389fda3aa7 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -7687,7 +7687,7 @@ class Name: public HeapObject {
   // kMaxCachedArrayIndexLength.
   STATIC_CHECK(IS_POWER_OF_TWO(kMaxCachedArrayIndexLength + 1));

-  static const int kContainsCachedArrayIndexMask =
+  static const unsigned int kContainsCachedArrayIndexMask =
       (~kMaxCachedArrayIndexLength << kArrayIndexHashLengthShift) |
       kIsNotArrayIndexMask;



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