SPARC NCG: ppr 64 bit store sizes
authorBen.Lippmeier@anu.edu.au <unknown>
Tue, 20 Jan 2009 07:40:00 +0000 (07:40 +0000)
committerBen.Lippmeier@anu.edu.au <unknown>
Tue, 20 Jan 2009 07:40:00 +0000 (07:40 +0000)
compiler/nativeGen/PprMach.hs

index 2da4b35..c472b5f 100644 (file)
@@ -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