From 10428c59580c05a349b1cb5e715a4efc9a97a327 Mon Sep 17 00:00:00 2001 From: "Ben.Lippmeier@anu.edu.au" Date: Tue, 20 Jan 2009 07:40:00 +0000 Subject: [PATCH] SPARC NCG: ppr 64 bit store sizes --- compiler/nativeGen/PprMach.hs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/compiler/nativeGen/PprMach.hs b/compiler/nativeGen/PprMach.hs index 2da4b35..c472b5f 100644 --- a/compiler/nativeGen/PprMach.hs +++ b/compiler/nativeGen/PprMach.hs @@ -402,11 +402,14 @@ pprSize x = ptext (case x of FF32 -> sLit "" FF64 -> sLit "d" ) + +-- suffix to store/ ST instruction pprStSize :: Size -> Doc pprStSize x = ptext (case x of II8 -> sLit "b" II16 -> sLit "h" II32 -> sLit "" + II64 -> sLit "x" FF32 -> sLit "" FF64 -> sLit "d" #endif -- 1.7.10.4