summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorIan Lynagh <ian@well-typed.com>2012-09-14 15:25:16 +0100
committerIan Lynagh <ian@well-typed.com>2012-09-14 15:25:16 +0100
commitb7dd4b5dbb658d7785f9a28c566be751173a2680 (patch)
tree3b7d0dcf1c4d0d30136d54f026ab76290230018b /includes
parentf203e63c6ff92bde63a206a58ea63ec082033b8a (diff)
downloadhaskell-b7dd4b5dbb658d7785f9a28c566be751173a2680.tar.gz
MAX_REAL_LONG_REG is always defined, so no need to test it
Diffstat (limited to 'includes')
-rw-r--r--includes/mkDerivedConstants.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/includes/mkDerivedConstants.c b/includes/mkDerivedConstants.c
index 6246a29dac..5b71a1b900 100644
--- a/includes/mkDerivedConstants.c
+++ b/includes/mkDerivedConstants.c
@@ -660,13 +660,7 @@ main(int argc, char *argv[])
constantInt("mAX_Real_Vanilla_REG", MAX_REAL_VANILLA_REG);
constantInt("mAX_Real_Float_REG", MAX_REAL_FLOAT_REG);
constantInt("mAX_Real_Double_REG", MAX_REAL_DOUBLE_REG);
- constantInt("mAX_Real_Long_REG",
-#ifdef MAX_REAL_LONG_REG
- MAX_REAL_LONG_REG
-#else
- 0
-#endif
- );
+ constantInt("mAX_Real_Long_REG", MAX_REAL_LONG_REG);
switch (mode) {
case Gen_Haskell_Type: