diff options
author | Simon Marlow <marlowsd@gmail.com> | 2012-01-04 11:44:02 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2012-01-04 13:06:08 +0000 |
commit | 3fc68b5c356b39b2b52a86d953367d0021c13262 (patch) | |
tree | e1d0059a5005a22e0bebf3a4347293ad339413e4 /aclocal.m4 | |
parent | a8b8d657807ff89fb94aecaefd65b6ab3e3b39e0 (diff) | |
download | haskell-3fc68b5c356b39b2b52a86d953367d0021c13262.tar.gz |
Remove missing archs (mipseb, mipsel, alpha) (#5734)
It doesn't hurt to map these to ArchUnknown since we don't need to
know anything specific about them, and adding them would be a pain
(there are a bunch of places where we have to case-match on all the
arches to avoid warnings).
Diffstat (limited to 'aclocal.m4')
-rw-r--r-- | aclocal.m4 | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/aclocal.m4 b/aclocal.m4 index 1d5d1f7ef2..c7cd6d1424 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -174,15 +174,6 @@ AC_DEFUN([FPTOOLS_SET_HASKELL_PLATFORM_VARS], GET_ARM_ISA() test -z "[$]2" || eval "[$]2=\"ArchARM {armISA = \$ARM_ISA, armISAExt = \$ARM_ISA_EXT}\"" ;; - alpha) - test -z "[$]2" || eval "[$]2=ArchAlpha" - ;; - mips|mipseb) - test -z "[$]2" || eval "[$]2=ArchMipseb" - ;; - mipsel) - test -z "[$]2" || eval "[$]2=ArchMipsel" - ;; hppa|hppa1_1|ia64|m68k|rs6000|s390|s390x|sparc64|vax) test -z "[$]2" || eval "[$]2=ArchUnknown" ;; |