diff options
author | Peter Trommler <ptrommler@acm.org> | 2018-12-30 22:23:53 +0100 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2019-01-01 11:44:16 -0500 |
commit | 374e44704b64afafc1179127e6c9c5bf1715ef39 (patch) | |
tree | e55962e8ac605a6762a18e30c8614d772effb2eb /compiler/codeGen/CodeGen/Platform | |
parent | ae4f1033cfe131fca9416e2993bda081e1f8c152 (diff) | |
download | haskell-374e44704b64afafc1179127e6c9c5bf1715ef39.tar.gz |
PPC NCG: Remove Darwin support
Support for Mac OS X on PowerPC has been dropped by Apple years ago. We
follow suit and remove PowerPC support for Darwin.
Fixes #16106.
Diffstat (limited to 'compiler/codeGen/CodeGen/Platform')
-rw-r--r-- | compiler/codeGen/CodeGen/Platform/PPC_Darwin.hs | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/compiler/codeGen/CodeGen/Platform/PPC_Darwin.hs b/compiler/codeGen/CodeGen/Platform/PPC_Darwin.hs deleted file mode 100644 index 91923fd453..0000000000 --- a/compiler/codeGen/CodeGen/Platform/PPC_Darwin.hs +++ /dev/null @@ -1,11 +0,0 @@ -{-# LANGUAGE CPP #-} - -module CodeGen.Platform.PPC_Darwin where - -import GhcPrelude - -#define MACHREGS_NO_REGS 0 -#define MACHREGS_powerpc 1 -#define MACHREGS_darwin 1 -#include "../../../../includes/CodeGen.Platform.hs" - |