Update the LLVM backend to work with llvm branch mono-2014-08-23-b401e6b9699423409a05...
[mono.git] / mono / metadata / sgen-minor-copy-object.h
index e12b3f4dcf8e3d76cdfee7e80e4a762fa232b757..782bbdf8de2dfe8b9994ccd92034b261a06cd250 100644 (file)
@@ -142,7 +142,7 @@ SERIAL_COPY_OBJECT_FROM_OBJ (void **obj_slot, SgenGrayQueue *queue)
                *obj_slot = forwarded;
 #ifndef SGEN_SIMPLE_NURSERY
                if (G_UNLIKELY (sgen_ptr_in_nursery (forwarded) && !sgen_ptr_in_nursery (obj_slot)))
-                       sgen_add_to_global_remset (obj_slot, forwarded, FALSE);
+                       sgen_add_to_global_remset (obj_slot, forwarded);
 #endif
                return;
        }
@@ -151,7 +151,7 @@ SERIAL_COPY_OBJECT_FROM_OBJ (void **obj_slot, SgenGrayQueue *queue)
                SGEN_LOG (9, " (pinned, no change)");
                HEAVY_STAT (++stat_nursery_copy_object_failed_pinned);
                if (!sgen_ptr_in_nursery (obj_slot))
-                       sgen_add_to_global_remset (obj_slot, obj, FALSE);
+                       sgen_add_to_global_remset (obj_slot, obj);
                return;
        }
 
@@ -195,7 +195,7 @@ SERIAL_COPY_OBJECT_FROM_OBJ (void **obj_slot, SgenGrayQueue *queue)
                 * most once would be the icing on the cake.
                 */
                if (!sgen_ptr_in_nursery (obj_slot))
-                       sgen_add_to_global_remset (obj_slot, obj, FALSE);
+                       sgen_add_to_global_remset (obj_slot, obj);
 
                return;
        }
@@ -207,12 +207,12 @@ SERIAL_COPY_OBJECT_FROM_OBJ (void **obj_slot, SgenGrayQueue *queue)
        *obj_slot = copy;
 #ifndef SGEN_SIMPLE_NURSERY
        if (G_UNLIKELY (sgen_ptr_in_nursery (copy) && !sgen_ptr_in_nursery (obj_slot)))
-               sgen_add_to_global_remset (obj_slot, copy, FALSE);
+               sgen_add_to_global_remset (obj_slot, copy);
 #else
        /* copy_object_no_checks () can return obj on OOM */
        if (G_UNLIKELY (obj == copy)) {
                if (G_UNLIKELY (sgen_ptr_in_nursery (copy) && !sgen_ptr_in_nursery (obj_slot)))
-                       sgen_add_to_global_remset (obj_slot, copy, FALSE);
+                       sgen_add_to_global_remset (obj_slot, copy);
        }
 #endif
 }