Index: src/heap.cc |
diff --git a/src/heap.cc b/src/heap.cc |
index 9a5a2b05a72a5699fed20e306307e70ea13dace6..1c1e084af48ea960078d6b9658c9e78d17e8efc2 100644 |
--- a/src/heap.cc |
+++ b/src/heap.cc |
@@ -2271,11 +2271,11 @@ MaybeObject* Heap::AllocateSharedFunctionInfo(Object* name) { |
SharedFunctionInfo* share = SharedFunctionInfo::cast(result); |
share->set_name(name); |
- Code* illegal = isolate_->builtins()->builtin(Builtins::Illegal); |
+ Code* illegal = isolate_->builtins()->builtin(Builtins::kIllegal); |
share->set_code(illegal); |
share->set_scope_info(SerializedScopeInfo::Empty()); |
Code* construct_stub = isolate_->builtins()->builtin( |
- Builtins::JSConstructStubGeneric); |
+ Builtins::kJSConstructStubGeneric); |
share->set_construct_stub(construct_stub); |
share->set_expected_nof_properties(0); |
share->set_length(0); |