Index: src/frames.cc |
diff --git a/src/frames.cc b/src/frames.cc |
index 4afd4d49d15c4d60e3026ad9b5beea20da12ce12..c0e81013deb9082e281dec05959d8a936f1019d6 100644 |
--- a/src/frames.cc |
+++ b/src/frames.cc |
@@ -216,9 +216,9 @@ bool StackTraceFrameIterator::IsValidFrame() { |
SafeStackFrameIterator::SafeStackFrameIterator( |
Isolate* isolate, |
- Address fp, Address sp, Address low_bound, Address high_bound) : |
+ Address fp, Address sp, Address js_entry_sp) : |
StackFrameIteratorBase(isolate, false), |
Jakob Kummerow
2013/07/03 14:12:31
nit: while you're here, please move the ':' onto t
yurys
2013/07/03 14:16:41
Done.
|
- low_bound_(low_bound), high_bound_(high_bound), |
+ low_bound_(sp), high_bound_(js_entry_sp), |
top_frame_type_(StackFrame::NONE) { |
StackFrame::State state; |
StackFrame::Type type; |