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

Unified Diff: src/deoptimizer.cc

Issue 1151523014: Fix another -Wsign-compare issue for GCC 4.9.2 (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 6 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/deoptimizer.cc
diff --git a/src/deoptimizer.cc b/src/deoptimizer.cc
index 2921d891d2367f5c05f63617f730f88ed80698a4..f19609a1dd024f8826cbe68ff92e88af3cefda08 100644
--- a/src/deoptimizer.cc
+++ b/src/deoptimizer.cc
@@ -2602,7 +2602,7 @@ Object* TranslatedValue::GetRawValue() const {
if (uint32_value() == 0) {
return isolate()->heap()->false_value();
} else {
- CHECK_EQ(1, uint32_value());
+ CHECK_EQ(1U, uint32_value());
return isolate()->heap()->true_value();
}
}
« 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