From 3fc68b5c356b39b2b52a86d953367d0021c13262 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Wed, 4 Jan 2012 11:44:02 +0000 Subject: [PATCH] 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). --- aclocal.m4 | 9 --------- 1 file changed, 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" ;; -- GitLab