[project @ 2005-10-24 09:33:37 by simonmar]
[ghc-hetmet.git] / ghc / rts / StgCRun.c
index c24620a..89fde5c 100644 (file)
@@ -85,11 +85,11 @@ register double fake_f9 __asm__("$f9");
 StgThreadReturnCode StgRun(StgFunPtr f, StgRegTable *basereg STG_UNUSED)
 {
     while (f) {
-       if (RtsFlags[0].DebugFlags.interpreter) {
+       IF_DEBUG(interpreter,
            debugBelch("Jumping to ");
            printPtr((P_)f); fflush(stdout);
            debugBelch("\n");
-       }
+           );
        f = (StgFunPtr) (f)();
     }
     return (StgThreadReturnCode)R1.i;