From 82b583acc592617e68c96accc1145965a8b0cfbe Mon Sep 17 00:00:00 2001 From: simonmar Date: Fri, 8 Apr 2005 10:04:26 +0000 Subject: [PATCH] [project @ 2005-04-08 10:04:26 by simonmar] fix breakage in i386 native codegen --- ghc/compiler/nativeGen/PprMach.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/compiler/nativeGen/PprMach.hs b/ghc/compiler/nativeGen/PprMach.hs index 51f5f47..d1f72f1 100644 --- a/ghc/compiler/nativeGen/PprMach.hs +++ b/ghc/compiler/nativeGen/PprMach.hs @@ -386,8 +386,8 @@ pprSize x = ptext (case x of I64 -> SLIT("q") #endif #if i386_TARGET_ARCH - F32 -> SLIT("l") - F64 -> SLIT("q") + F32 -> SLIT("s") + F64 -> SLIT("l") F80 -> SLIT("t") #endif #if x86_64_TARGET_ARCH -- 1.7.10.4