X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fincludes%2FRts.h;h=32e48d2896bd61908699c9b59c27d92bc634c457;hb=13a428caa18deb2805e307cbe7a99fa9f09c13a4;hp=264857bfca601a46c2164068db4d52c049faf851;hpb=d7416a5e4d75fa32190a3ea96e5d9c274a33e33a;p=ghc-hetmet.git diff --git a/ghc/includes/Rts.h b/ghc/includes/Rts.h index 264857b..32e48d2 100644 --- a/ghc/includes/Rts.h +++ b/ghc/includes/Rts.h @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: Rts.h,v 1.14 2001/10/29 11:33:37 simonmar Exp $ + * $Id: Rts.h,v 1.15 2001/11/25 03:56:39 sof Exp $ * * (c) The GHC Team, 1998-1999 * @@ -94,14 +94,6 @@ extern "C" { Useful macros and inline functions -------------------------------------------------------------------------- */ -/* - * Use this on the RHS of macros which expand to nothing - * to make sure that the macro can be used in a context which - * demands a non-empty statement. - */ - -#define doNothing() do { } while (0) - #define stg_min(a,b) ({typeof(a) _a = (a), _b = (b); _a <= _b ? _a : _b; }) #define stg_max(a,b) ({typeof(a) _a = (a), _b = (b); _a <= _b ? _b : _a; })