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

Unified Diff: src/frames.cc

Issue 1202843006: Fix -Werror=sign-compare error with GCC (Closed) Base URL: https://chromium.googlesource.com/v8/v8@master
Patch Set: Created 5 years, 6 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/frames.cc
diff --git a/src/frames.cc b/src/frames.cc
index c6b04f7081fc1f9bd6c81cadc7ffc8a8ac11e7b2..cde6f21f74813ddb7f90612293bcc057225929ae 100644
--- a/src/frames.cc
+++ b/src/frames.cc
@@ -960,7 +960,7 @@ void OptimizedFrame::Summarize(List<FrameSummary>* frames) {
Deoptimizer::GetOutputInfo(output_data, ast_id, shared_info);
unsigned const pc_offset =
FullCodeGenerator::PcField::decode(entry) + Code::kHeaderSize;
- DCHECK_NE(0, pc_offset);
+ DCHECK_NE(0U, pc_offset);
FrameSummary summary(receiver, function, code, pc_offset, is_constructor);
frames->Add(summary);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698