Index: test/cctest/compiler/test-instruction.cc |
diff --git a/test/cctest/compiler/test-instruction.cc b/test/cctest/compiler/test-instruction.cc |
index c16e1505eb7a59e29e7aa7986839110a08c95d74..865adcc228ee723574b48a7be617fc3177612032 100644 |
--- a/test/cctest/compiler/test-instruction.cc |
+++ b/test/cctest/compiler/test-instruction.cc |
@@ -300,9 +300,9 @@ TEST(InstructionOperands) { |
{ |
TestInstr* i = TestInstr::New(&zone, 101); |
- CHECK_EQ(0, i->OutputCount()); |
- CHECK_EQ(0, i->InputCount()); |
- CHECK_EQ(0, i->TempCount()); |
+ CHECK_EQ(0, static_cast<int>(i->OutputCount())); |
+ CHECK_EQ(0, static_cast<int>(i->InputCount())); |
+ CHECK_EQ(0, static_cast<int>(i->TempCount())); |
} |
InstructionOperand* outputs[] = { |