summaryrefslogtreecommitdiff
path: root/compiler/nativeGen/NCG.h
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2011-10-23 22:49:26 +0100
committerIan Lynagh <igloo@earth.li>2011-10-23 22:49:26 +0100
commitcc7871014b480531f0737508bf642df9bcc519d6 (patch)
tree19550061f30add29d214e2e239fff2e121dbc806 /compiler/nativeGen/NCG.h
parent1f52e5fd15476cdc095e5ec195d4be96a179dea0 (diff)
downloadhaskell-cc7871014b480531f0737508bf642df9bcc519d6.tar.gz
Remove unused IF_OS_* CPP definitions
Diffstat (limited to 'compiler/nativeGen/NCG.h')
-rw-r--r--compiler/nativeGen/NCG.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/compiler/nativeGen/NCG.h b/compiler/nativeGen/NCG.h
index 81cbf612dc..ad87a678d6 100644
--- a/compiler/nativeGen/NCG.h
+++ b/compiler/nativeGen/NCG.h
@@ -13,22 +13,8 @@
#define COMMA ,
--- - - - - - - - - - - - - - - - - - - - - -
#if i386_TARGET_ARCH
# define IF_ARCH_i386(x,y) x
#else
# define IF_ARCH_i386(x,y) y
#endif
--- - - - - - - - - - - - - - - - - - - - - -
-#if linux_TARGET_OS
-# define IF_OS_linux(x,y) x
-#else
-# define IF_OS_linux(x,y) y
-#endif
--- - - - - - - - - - - - - - - - - - - - - -
-#if darwin_TARGET_OS
-# define IF_OS_darwin(x,y) x
-#else
-# define IF_OS_darwin(x,y) y
-#endif
-#endif