Revision: 21654
Author:   [email protected]
Date:     Tue Jun  3 16:41:48 2014 UTC
Log:      Fix Arm release build after r21653

[email protected]

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

Modified:
 /branches/bleeding_edge/src/arm/assembler-arm.cc

=======================================
--- /branches/bleeding_edge/src/arm/assembler-arm.cc Tue Jun 3 16:22:10 2014 UTC +++ /branches/bleeding_edge/src/arm/assembler-arm.cc Tue Jun 3 16:41:48 2014 UTC
@@ -3592,15 +3592,14 @@

 void ConstantPoolBuilder::Populate(Assembler* assm,
                                    ConstantPoolArray* constant_pool) {
- ConstantPoolArray::LayoutSection section = ConstantPoolArray::SMALL_SECTION;
-  ASSERT(count_of_64bit_ ==
-      constant_pool->number_of_entries(ConstantPoolArray::INT64, section));
-  ASSERT(count_of_code_ptr_ ==
- constant_pool->number_of_entries(ConstantPoolArray::CODE_PTR, section));
-  ASSERT(count_of_heap_ptr_ ==
- constant_pool->number_of_entries(ConstantPoolArray::HEAP_PTR, section));
-  ASSERT(count_of_32bit_ ==
-      constant_pool->number_of_entries(ConstantPoolArray::INT32, section));
+  ASSERT(count_of_64bit_ == constant_pool->number_of_entries(
+             ConstantPoolArray::INT64, ConstantPoolArray::SMALL_SECTION));
+  ASSERT(count_of_code_ptr_ == constant_pool->number_of_entries(
+ ConstantPoolArray::CODE_PTR, ConstantPoolArray::SMALL_SECTION));
+  ASSERT(count_of_heap_ptr_ == constant_pool->number_of_entries(
+ ConstantPoolArray::HEAP_PTR, ConstantPoolArray::SMALL_SECTION));
+  ASSERT(count_of_32bit_ == constant_pool->number_of_entries(
+             ConstantPoolArray::INT32, ConstantPoolArray::SMALL_SECTION));
   ASSERT(entries_.size() == merged_indexes_.size());

   int index_64bit = 0;

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