| Index: src/runtime/runtime-test.cc
|
| diff --git a/src/runtime/runtime-test.cc b/src/runtime/runtime-test.cc
|
| index 5f27a609a6d934b6977875250ff7369cd30195fa..5117e42679b652045a299c43af26cce562793988 100644
|
| --- a/src/runtime/runtime-test.cc
|
| +++ b/src/runtime/runtime-test.cc
|
| @@ -398,7 +398,7 @@ RUNTIME_FUNCTION(Runtime_DisassembleFunction) {
|
| DCHECK(args.length() == 1);
|
| // Get the function and make sure it is compiled.
|
| CONVERT_ARG_HANDLE_CHECKED(JSFunction, func, 0);
|
| - if (!Compiler::Compile(func, KEEP_EXCEPTION)) {
|
| + if (!Compiler::Compile(func, Compiler::KEEP_EXCEPTION)) {
|
| return isolate->heap()->exception();
|
| }
|
| OFStream os(stdout);
|
|
|