Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Unified Diff: src/arm/assembler-arm.cc

Issue 311903003: Fix Arm release build after r21653 (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/arm/assembler-arm.cc
diff --git a/src/arm/assembler-arm.cc b/src/arm/assembler-arm.cc
index ee4def9076600b36cefdd585a1c001b3ae148ce7..c3f9ab0b9b2501997a7f83d154b1607c6fad6ca3 100644
--- a/src/arm/assembler-arm.cc
+++ b/src/arm/assembler-arm.cc
@@ -3592,15 +3592,14 @@ Handle<ConstantPoolArray> ConstantPoolBuilder::New(Isolate* isolate) {
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;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698