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

Unified Diff: src/hydrogen-instructions.h

Issue 403373002: Fix HSourcePosition when --hydrogen-track-positions is used. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 5 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/hydrogen-instructions.h
diff --git a/src/hydrogen-instructions.h b/src/hydrogen-instructions.h
index 8f9a44b50bcdf9dacf97f45ef3b7cc15268028cc..a596873d09e040c33ceea997bf430d6852b4e0de 100644
--- a/src/hydrogen-instructions.h
+++ b/src/hydrogen-instructions.h
@@ -451,7 +451,7 @@ class HSourcePosition {
typedef BitField<int, 0, 9> InliningIdField;
// Offset from the start of the inlined function.
- typedef BitField<int, 9, 22> PositionField;
+ typedef BitField<int, 9, 23> PositionField;
// On HPositionInfo can use this constructor.
explicit HSourcePosition(int value) : value_(value) { }
« 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