From: Simon Marlow Date: Tue, 20 Jun 2006 15:10:39 +0000 (+0000) Subject: fix sloppy conditionals X-Git-Tag: Before_FC_branch_merge~355 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;ds=sidebyside;h=fb684b4309f0d9b3eb823961c93271a406cd1bf6;p=ghc-hetmet.git fix sloppy conditionals --- diff --git a/includes/Cmm.h b/includes/Cmm.h index 783b0e4..d95002c 100644 --- a/includes/Cmm.h +++ b/includes/Cmm.h @@ -214,7 +214,7 @@ * Note the syntax is slightly different to the C version of this macro. */ #ifdef DEBUG -#define IF_DEBUG(c,s) if (RtsFlags_DebugFlags_##c(RtsFlags)) { s; } +#define IF_DEBUG(c,s) if (RtsFlags_DebugFlags_##c(RtsFlags) != 0::I32) { s; } #else #define IF_DEBUG(c,s) /* nothing */ #endif