Index: test/cctest/compiler/function-tester.h |
diff --git a/test/cctest/compiler/function-tester.h b/test/cctest/compiler/function-tester.h |
index 7cb118ac5b412ba765c6939fca8d232f4552d6e7..7e16eead38629e15612d37e5be1ba8cef649c959 100644 |
--- a/test/cctest/compiler/function-tester.h |
+++ b/test/cctest/compiler/function-tester.h |
@@ -36,7 +36,7 @@ class FunctionTester : public InitializedHandleScope { |
const uint32_t supported_flags = CompilationInfo::kContextSpecializing | |
CompilationInfo::kInliningEnabled | |
CompilationInfo::kTypingEnabled; |
- CHECK_EQ(0u, flags_ & ~supported_flags); |
+ CHECK_EQ(0, flags_ & ~supported_flags); |
} |
explicit FunctionTester(Graph* graph) |