X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Finterpreter%2Ftranslate.c;fp=ghc%2Finterpreter%2Ftranslate.c;h=a6935cb894845b709a8d3df1b1eec7cf58a860d7;hb=f88ac43f881583ec611edeafbb9e68419ba7ef4b;hp=82fd3892750c3438edf1c2a8c879088dc932eca8;hpb=0164d7f0e82fed7e3e691706b2c3ca12a74119bc;p=ghc-hetmet.git diff --git a/ghc/interpreter/translate.c b/ghc/interpreter/translate.c index 82fd389..a6935cb 100644 --- a/ghc/interpreter/translate.c +++ b/ghc/interpreter/translate.c @@ -10,8 +10,8 @@ * included in the distribution. * * $RCSfile: translate.c,v $ - * $Revision: 1.27 $ - * $Date: 2000/03/10 20:03:37 $ + * $Revision: 1.28 $ + * $Date: 2000/03/13 11:37:17 $ * ------------------------------------------------------------------------*/ #include "prelude.h" @@ -25,11 +25,11 @@ /* ---------------------------------------------------------------- */ -static StgVar local stgOffset Args((Offset,List)); -static StgVar local stgText Args((Text,List)); -static StgRhs local stgRhs Args((Cell,Int,List,StgExpr)); -static StgCaseAlt local stgCaseAlt Args((Cell,Int,List,StgExpr)); -static StgExpr local stgExpr Args((Cell,Int,List,StgExpr)); +static StgVar local stgOffset ( Offset,List ); +static StgVar local stgText ( Text,List ); +static StgRhs local stgRhs ( Cell,Int,List,StgExpr ); +static StgCaseAlt local stgCaseAlt ( Cell,Int,List,StgExpr ); +static StgExpr local stgExpr ( Cell,Int,List,StgExpr ); /* ---------------------------------------------------------------- */ @@ -37,9 +37,7 @@ static StgExpr local stgExpr Args((Cell,Int,List,StgExpr)); /* dictionaries, tuples, etc */ List stgGlobals = NIL; -static StgVar local getSTGTupleVar Args((Cell)); - -static StgVar local getSTGTupleVar( Cell d ) +static StgVar local getSTGTupleVar ( Cell d ) { Pair p = cellAssoc(d,stgGlobals); /* Yoiks - only the Prelude sees Tuple decls! */