|
Line 0
Link Here
|
|
|
1 |
--- src/deoptimizer.cc.orig 2013-05-01 14:56:29.000000000 +0200 |
| 2 |
+++ src/deoptimizer.cc 2015-08-20 22:31:07.149576000 +0200 |
| 3 |
@@ -1392,7 +1392,7 @@ void Deoptimizer::MaterializeHeapObjects |
| 4 |
PrintF("Materializing a new heap number %p [%e] in slot %p\n", |
| 5 |
reinterpret_cast<void*>(*num), |
| 6 |
d.value(), |
| 7 |
- d.slot_address()); |
| 8 |
+ reinterpret_cast<void*>(d.slot_address())); |
| 9 |
} |
| 10 |
Memory::Object_at(d.slot_address()) = *num; |
| 11 |
} |
| 12 |
@@ -1474,7 +1474,7 @@ void Deoptimizer::MaterializeHeapNumbers |
| 13 |
"for parameter slot #%d\n", |
| 14 |
reinterpret_cast<void*>(*num), |
| 15 |
d.value(), |
| 16 |
- d.slot_address(), |
| 17 |
+ reinterpret_cast<void*>(d.slot_address()), |
| 18 |
index); |
| 19 |
} |
| 20 |
|
| 21 |
@@ -1490,7 +1490,7 @@ void Deoptimizer::MaterializeHeapNumbers |
| 22 |
"for expression slot #%d\n", |
| 23 |
reinterpret_cast<void*>(*num), |
| 24 |
d.value(), |
| 25 |
- d.slot_address(), |
| 26 |
+ reinterpret_cast<void*>(d.slot_address()), |
| 27 |
index); |
| 28 |
} |
| 29 |
|