| Index: src/isolate.cc
|
| diff --git a/src/isolate.cc b/src/isolate.cc
|
| index c81afcc0e744226b626a9ba497af6199aa6ec5ef..fd67b0763fc7b20f78cda0731ed41c5f8c27a192 100644
|
| --- a/src/isolate.cc
|
| +++ b/src/isolate.cc
|
| @@ -387,7 +387,8 @@ Handle<Object> Isolate::CaptureSimpleStackTrace(Handle<JSReceiver> error_object,
|
| switch (frame->type()) {
|
| case StackFrame::JAVA_SCRIPT:
|
| case StackFrame::OPTIMIZED:
|
| - case StackFrame::INTERPRETED: {
|
| + case StackFrame::INTERPRETED:
|
| + case StackFrame::BUILTIN: {
|
| JavaScriptFrame* js_frame = JavaScriptFrame::cast(frame);
|
| // Set initial size to the maximum inlining level + 1 for the outermost
|
| // function.
|
|
|