Skip to content
Snippets Groups Projects
Commit 6666a929 authored by sof's avatar sof
Browse files

[project @ 1999-01-25 11:42:51 by sof]

Tweaks to make the sources compilable again on osf3.2
parent dce7bd6a
No related merge requests found
......@@ -181,7 +181,11 @@ mAX_Long_REG = (MAX_LONG_REG :: Int)
mAX_Real_Vanilla_REG = (MAX_REAL_VANILLA_REG :: Int)
mAX_Real_Float_REG = (MAX_REAL_FLOAT_REG :: Int)
mAX_Real_Double_REG = (MAX_REAL_DOUBLE_REG :: Int)
#ifdef MAX_REAL_LONG_REG
mAX_Real_Long_REG = (MAX_REAL_LONG_REG :: Int)
#else
mAX_Real_Long_REG = (0::Int)
#endif
\end{code}
Closure header sizes.
......
......@@ -316,7 +316,7 @@ getRegister (StPrim primop [x]) -- unary PrimOps
Double2FloatOp -> coerceFltCode x
Float2DoubleOp -> coerceFltCode x
other_op -> getRegister (StCall fn cconv DoubleRep [x])
other_op -> getRegister (StCall fn cCallConv DoubleRep [x])
where
fn = case other_op of
FloatExpOp -> SLIT("exp")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment