Fix another -Wsign-compare issue for GCC 4.9.2
authorpaul.lind <paul.lind@imgtec.com>
Tue, 9 Jun 2015 06:12:47 +0000 (23:12 -0700)
committerCommit bot <commit-bot@chromium.org>
Tue, 9 Jun 2015 06:12:57 +0000 (06:12 +0000)
BUG=

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

Cr-Commit-Position: refs/heads/master@{#28853}

src/deoptimizer.cc

index 2921d89..f19609a 100644 (file)
@@ -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();
       }
     }