From 85ef4519598dd4c14216d3d81222d84393f6da34 Mon Sep 17 00:00:00 2001 From: matthewc Date: Tue, 11 Jun 2002 08:06:33 +0000 Subject: [PATCH] [project @ 2002-06-11 08:06:33 by matthewc] #ifdef use of EM_IA_64 --- ghc/rts/Linker.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ghc/rts/Linker.c b/ghc/rts/Linker.c index 5d03dd3..12be467 100644 --- a/ghc/rts/Linker.c +++ b/ghc/rts/Linker.c @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: Linker.c,v 1.93 2002/06/10 02:13:03 matthewc Exp $ + * $Id: Linker.c,v 1.94 2002/06/11 08:06:33 matthewc Exp $ * * (c) The GHC Team, 2000, 2001 * @@ -2115,7 +2115,9 @@ ocVerifyImage_ELF ( ObjectCode* oc ) switch (ehdr->e_machine) { case EM_386: IF_DEBUG(linker,belch( "x86" )); break; case EM_SPARC: IF_DEBUG(linker,belch( "sparc" )); break; +#ifdef EM_IA_64 case EM_IA_64: IF_DEBUG(linker,belch( "ia64" )); break; +#endif default: IF_DEBUG(linker,belch( "unknown" )); belch("%s: unknown architecture", oc->fileName); return 0; -- 1.7.10.4