summaryrefslogtreecommitdiff
path: root/deps/v8/src/eh-frame.cc
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/eh-frame.cc')
-rw-r--r--deps/v8/src/eh-frame.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/src/eh-frame.cc b/deps/v8/src/eh-frame.cc
index 5f0f1c1b35..ce5552fcce 100644
--- a/deps/v8/src/eh-frame.cc
+++ b/deps/v8/src/eh-frame.cc
@@ -252,7 +252,7 @@ void EhFrameWriter::AdvanceLocation(int pc_offset) {
DCHECK_GE(pc_offset, last_pc_offset_);
uint32_t delta = pc_offset - last_pc_offset_;
- DCHECK_EQ(delta % EhFrameConstants::kCodeAlignmentFactor, 0);
+ DCHECK_EQ(delta % EhFrameConstants::kCodeAlignmentFactor, 0u);
uint32_t factored_delta = delta / EhFrameConstants::kCodeAlignmentFactor;
if (factored_delta <= EhFrameConstants::kLocationMask) {