| Index: src/builtins.cc
|
| diff --git a/src/builtins.cc b/src/builtins.cc
|
| index dcbeb2a6287eb8d3f09d30f6737e7aad9850b8a5..918e243329f3f8160cfac9e05e11d052a026cd25 100644
|
| --- a/src/builtins.cc
|
| +++ b/src/builtins.cc
|
| @@ -22,7 +22,6 @@
|
| #include "src/json-parser.h"
|
| #include "src/json-stringifier.h"
|
| #include "src/messages.h"
|
| -#include "src/profiler/cpu-profiler.h"
|
| #include "src/property-descriptor.h"
|
| #include "src/prototype.h"
|
| #include "src/string-builder.h"
|
| @@ -5676,8 +5675,8 @@ void Builtins::SetUp(Isolate* isolate, bool create_heap_objects) {
|
| Handle<Code> code = (*functions[i].builder)(isolate, functions + i);
|
| // Log the event and add the code to the builtins array.
|
| PROFILE(isolate,
|
| - CodeCreateEvent(Logger::BUILTIN_TAG, AbstractCode::cast(*code),
|
| - functions[i].s_name));
|
| + CodeCreateEvent(CodeEventListener::BUILTIN_TAG,
|
| + AbstractCode::cast(*code), functions[i].s_name));
|
| builtins_[i] = *code;
|
| code->set_builtin_index(i);
|
| #ifdef ENABLE_DISASSEMBLER
|
|
|