| Index: src/runtime/runtime-compiler.cc
|
| diff --git a/src/runtime/runtime-compiler.cc b/src/runtime/runtime-compiler.cc
|
| index 73a9aef93a929ea6542c9d8a60b9c631f09ca4f9..f1392d876c21b39c64a738bb376a65dba6236ef6 100644
|
| --- a/src/runtime/runtime-compiler.cc
|
| +++ b/src/runtime/runtime-compiler.cc
|
| @@ -32,7 +32,7 @@ RUNTIME_FUNCTION(Runtime_CompileLazy) {
|
|
|
| StackLimitCheck check(isolate);
|
| if (check.JsHasOverflowed(1 * KB)) return isolate->StackOverflow();
|
| - if (!Compiler::Compile(function, KEEP_EXCEPTION)) {
|
| + if (!Compiler::Compile(function, Compiler::KEEP_EXCEPTION)) {
|
| return isolate->heap()->exception();
|
| }
|
| DCHECK(function->is_compiled());
|
|
|