| Index: src/assembler.cc
|
| diff --git a/src/assembler.cc b/src/assembler.cc
|
| index ee3b9f22fb26873cf1efb76af61964f5b180a650..bec902a405884a78f64df7d9f6bcbe5375e58d75 100644
|
| --- a/src/assembler.cc
|
| +++ b/src/assembler.cc
|
| @@ -829,7 +829,7 @@ void RelocInfo::Print(Isolate* isolate, FILE* out) {
|
| PrintF(out, " (%s) (%p)", Code::Kind2String(code->kind()),
|
| target_address());
|
| if (rmode_ == CODE_TARGET_WITH_ID) {
|
| - PrintF(" (id=%d)", static_cast<int>(data_));
|
| + PrintF(out, " (id=%d)", static_cast<int>(data_));
|
| }
|
| } else if (IsPosition(rmode_)) {
|
| PrintF(out, " (%" V8_PTR_PREFIX "d)", data());
|
| @@ -1056,14 +1056,6 @@ ExternalReference ExternalReference::perform_gc_function(Isolate* isolate) {
|
| }
|
|
|
|
|
| -ExternalReference ExternalReference::fill_heap_number_with_random_function(
|
| - Isolate* isolate) {
|
| - return ExternalReference(Redirect(
|
| - isolate,
|
| - FUNCTION_ADDR(V8::FillHeapNumberWithRandom)));
|
| -}
|
| -
|
| -
|
| ExternalReference ExternalReference::delete_handle_scope_extensions(
|
| Isolate* isolate) {
|
| return ExternalReference(Redirect(
|
| @@ -1346,14 +1338,6 @@ ExternalReference ExternalReference::address_of_the_hole_nan() {
|
| }
|
|
|
|
|
| -ExternalReference ExternalReference::record_object_allocation_function(
|
| - Isolate* isolate) {
|
| - return ExternalReference(
|
| - Redirect(isolate,
|
| - FUNCTION_ADDR(HeapProfiler::RecordObjectAllocationFromMasm)));
|
| -}
|
| -
|
| -
|
| ExternalReference ExternalReference::address_of_uint32_bias() {
|
| return ExternalReference(
|
| reinterpret_cast<void*>(&double_constants.uint32_bias));
|
|
|