Commit 09ae1c3d authored by wingo's avatar wingo Committed by Commit bot

Fix -Wsign-compare bugs with GCC 4.9.2

R=svenpanne@chromium.org
LOG=N
BUG=

Review URL: https://codereview.chromium.org/1105653002

Cr-Commit-Position: refs/heads/master@{#28039}
parent 41098dbb
...@@ -2218,7 +2218,7 @@ float GreedyAllocator::CalculateSpillWeight(LiveRange* range) { ...@@ -2218,7 +2218,7 @@ float GreedyAllocator::CalculateSpillWeight(LiveRange* range) {
// GetLiveRangeSize is DCHECK-ed to not be 0 // GetLiveRangeSize is DCHECK-ed to not be 0
unsigned range_size = GetLiveRangeSize(range); unsigned range_size = GetLiveRangeSize(range);
DCHECK_NE(0, range_size); DCHECK_NE(0U, range_size);
return static_cast<float>(use_count) / static_cast<float>(range_size); return static_cast<float>(use_count) / static_cast<float>(range_size);
} }
......
...@@ -2257,7 +2257,7 @@ void Deoptimizer::DoTranslateObject(TranslationIterator* iterator, ...@@ -2257,7 +2257,7 @@ void Deoptimizer::DoTranslateObject(TranslationIterator* iterator,
AddObjectTaggedValue( AddObjectTaggedValue(
reinterpret_cast<intptr_t>(isolate_->heap()->false_value())); reinterpret_cast<intptr_t>(isolate_->heap()->false_value()));
} else { } else {
DCHECK_EQ(1, value); DCHECK_EQ(1U, value);
AddObjectTaggedValue( AddObjectTaggedValue(
reinterpret_cast<intptr_t>(isolate_->heap()->true_value())); reinterpret_cast<intptr_t>(isolate_->heap()->true_value()));
} }
...@@ -2367,7 +2367,7 @@ void Deoptimizer::DoTranslateObject(TranslationIterator* iterator, ...@@ -2367,7 +2367,7 @@ void Deoptimizer::DoTranslateObject(TranslationIterator* iterator,
AddObjectTaggedValue( AddObjectTaggedValue(
reinterpret_cast<intptr_t>(isolate_->heap()->false_value())); reinterpret_cast<intptr_t>(isolate_->heap()->false_value()));
} else { } else {
DCHECK_EQ(1, value); DCHECK_EQ(1U, value);
AddObjectTaggedValue( AddObjectTaggedValue(
reinterpret_cast<intptr_t>(isolate_->heap()->true_value())); reinterpret_cast<intptr_t>(isolate_->heap()->true_value()));
} }
...@@ -2573,7 +2573,7 @@ void Deoptimizer::DoTranslateCommand(TranslationIterator* iterator, ...@@ -2573,7 +2573,7 @@ void Deoptimizer::DoTranslateCommand(TranslationIterator* iterator,
output_offset, output_offset,
reinterpret_cast<intptr_t>(isolate_->heap()->false_value())); reinterpret_cast<intptr_t>(isolate_->heap()->false_value()));
} else { } else {
DCHECK_EQ(1, value); DCHECK_EQ(1U, value);
output_[frame_index]->SetFrameSlot( output_[frame_index]->SetFrameSlot(
output_offset, output_offset,
reinterpret_cast<intptr_t>(isolate_->heap()->true_value())); reinterpret_cast<intptr_t>(isolate_->heap()->true_value()));
...@@ -2699,7 +2699,7 @@ void Deoptimizer::DoTranslateCommand(TranslationIterator* iterator, ...@@ -2699,7 +2699,7 @@ void Deoptimizer::DoTranslateCommand(TranslationIterator* iterator,
output_offset, output_offset,
reinterpret_cast<intptr_t>(isolate_->heap()->false_value())); reinterpret_cast<intptr_t>(isolate_->heap()->false_value()));
} else { } else {
DCHECK_EQ(1, value); DCHECK_EQ(1U, value);
output_[frame_index]->SetFrameSlot( output_[frame_index]->SetFrameSlot(
output_offset, output_offset,
reinterpret_cast<intptr_t>(isolate_->heap()->true_value())); reinterpret_cast<intptr_t>(isolate_->heap()->true_value()));
...@@ -3456,7 +3456,7 @@ Handle<Object> SlotRef::GetValue(Isolate* isolate) { ...@@ -3456,7 +3456,7 @@ Handle<Object> SlotRef::GetValue(Isolate* isolate) {
if (value == 0) { if (value == 0) {
return isolate->factory()->false_value(); return isolate->factory()->false_value();
} else { } else {
DCHECK_EQ(1, value); DCHECK_EQ(1U, value);
return isolate->factory()->true_value(); return isolate->factory()->true_value();
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment