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

Unified Diff: src/frames-inl.h

Issue 14143008: Fix build failure on Win64 since r14458. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 8 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-inl.h
diff --git a/src/frames-inl.h b/src/frames-inl.h
index 6ca1f1ff69868850549d3d026e6a6401375a2c36..7901a5e591c85f8d85431d7dbbecd426e64ab08d 100644
--- a/src/frames-inl.h
+++ b/src/frames-inl.h
@@ -236,7 +236,7 @@ inline int JavaScriptFrame::ComputeOperandsCount() const {
ASSERT(IsAligned(stack_size_in_bytes, kPointerSize));
ASSERT(type() == JAVA_SCRIPT);
ASSERT(stack_size_in_bytes >= 0);
- return stack_size_in_bytes >> kPointerSizeLog2;
+ return static_cast<int>(stack_size_in_bytes >> kPointerSizeLog2);
}
« 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