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

Unified Diff: src/wasm/wasm-text.cc

Issue 2526783002: [base] Define CHECK comparison for signed vs. unsigned (Closed)
Patch Set: Rebase & refactor for windows Created 4 years, 1 month 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
« src/base/logging.h ('K') | « src/wasm/wasm-objects.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/wasm/wasm-text.cc
diff --git a/src/wasm/wasm-text.cc b/src/wasm/wasm-text.cc
index f26663227ac99eb43d63edc2e7e0e383bbcdf38b..23ec4d9aae514ab78c1e61b09499d3b8c88ceb00 100644
--- a/src/wasm/wasm-text.cc
+++ b/src/wasm/wasm-text.cc
@@ -233,7 +233,7 @@ void wasm::PrintWasmText(
}
case kExprCallIndirect: {
CallIndirectOperand operand(&i, i.pc());
- DCHECK_EQ(0U, operand.table_index);
+ DCHECK_EQ(0, operand.table_index);
os << "call_indirect " << operand.index;
break;
}
« src/base/logging.h ('K') | « src/wasm/wasm-objects.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698