| Index: runtime/vm/code_generator.cc
|
| ===================================================================
|
| --- runtime/vm/code_generator.cc (revision 21785)
|
| +++ runtime/vm/code_generator.cc (working copy)
|
| @@ -1689,22 +1689,6 @@
|
| END_LEAF_RUNTIME_ENTRY
|
|
|
|
|
| -DEFINE_LEAF_RUNTIME_ENTRY(void,
|
| - HeapTraceStore,
|
| - RawObject* object,
|
| - uword field_addr,
|
| - RawObject* value) {
|
| - if (!(object->IsHeapObject() && value->IsHeapObject())) {
|
| - return;
|
| - }
|
| - HeapTrace* heap_trace = Isolate::Current()->heap()->trace();
|
| - heap_trace->TraceStoreIntoObject(RawObject::ToAddr(object),
|
| - field_addr,
|
| - RawObject::ToAddr(value));
|
| -}
|
| -END_LEAF_RUNTIME_ENTRY
|
| -
|
| -
|
| double DartModulo(double left, double right) {
|
| double remainder = fmod_ieee(left, right);
|
| if (remainder == 0.0) {
|
|
|