[project @ 1997-06-05 09:16:04 by sof]
[ghc-hetmet.git] / ghc / compiler / HsVersions.h
index 955c5f9..55fedfb 100644 (file)
@@ -14,8 +14,10 @@ you will screw up the layout where they are used in case expressions!
 
 #ifdef DEBUG
 #define ASSERT(e) if (not (e)) then (assertPanic __FILE__ __LINE__) else
+#define ASSERT2(e,msg) if (not (e)) then (assertPprPanic __FILE__ __LINE__ (msg)) else
 #else
 #define ASSERT(e)
+#define ASSERT2(e,msg)
 #endif
 
 #if __STDC__