From 0bb98b3ef3d2a67ed5c27d78e52eecebcfdf0068 Mon Sep 17 00:00:00 2001 From: wolfgang Date: Thu, 9 Jun 2005 16:08:16 +0000 Subject: [PATCH] [project @ 2005-06-09 16:08:16 by wolfgang] Fix a typo: powerpc32_TARGET_OS -> powerpc64_TARGET_OS This didn't do any actual damage, because powerpc64 is not yet supported by the NCG and powerpc32 is called just 'powerpc'. MERGE TO STABLE --- ghc/compiler/nativeGen/PositionIndependentCode.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc/compiler/nativeGen/PositionIndependentCode.hs b/ghc/compiler/nativeGen/PositionIndependentCode.hs index c6f439e..0daccb6 100644 --- a/ghc/compiler/nativeGen/PositionIndependentCode.hs +++ b/ghc/compiler/nativeGen/PositionIndependentCode.hs @@ -440,7 +440,7 @@ pprImportedSymbol importedLbl | otherwise = empty -#elif linux_TARGET_OS && !powerpc32_TARGET_ARCH +#elif linux_TARGET_OS && !powerpc64_TARGET_ARCH -- ELF / Linux -- -- 1.7.10.4