[sgen] Remove obsolete check in #ifdef.
authorMark Probst <mark.probst@gmail.com>
Fri, 22 Aug 2014 18:30:34 +0000 (11:30 -0700)
committerMark Probst <mark.probst@gmail.com>
Mon, 29 Sep 2014 18:03:58 +0000 (11:03 -0700)
That macro doesn't exist anymore.

mono/metadata/sgen-gc.h

index cc5daa551bae802d66df57a7a4fe043ae7d93e40..1a0922716080255c6689ee9a55e0120837e5f4d0 100644 (file)
@@ -351,7 +351,7 @@ typedef struct {
 static inline MONO_ALWAYS_INLINE void
 GRAY_OBJECT_ENQUEUE (SgenGrayQueue *queue, char* obj)
 {
-#if defined(SGEN_GRAY_OBJECT_ENQUEUE) || SGEN_MAX_DEBUG_LEVEL >= 9
+#if SGEN_MAX_DEBUG_LEVEL >= 9
        sgen_gray_object_enqueue (queue, obj);
 #else
        if (G_UNLIKELY (!queue->first || queue->cursor == GRAY_LAST_CURSOR_POSITION (queue->first))) {
@@ -372,7 +372,7 @@ GRAY_OBJECT_ENQUEUE (SgenGrayQueue *queue, char* obj)
 static inline MONO_ALWAYS_INLINE void
 GRAY_OBJECT_DEQUEUE (SgenGrayQueue *queue, char** obj)
 {
-#if defined(SGEN_GRAY_OBJECT_ENQUEUE) || SGEN_MAX_DEBUG_LEVEL >= 9
+#if SGEN_MAX_DEBUG_LEVEL >= 9
        *obj = sgen_gray_object_enqueue (queue);
 #else
        if (!queue->first) {