[commit: ghc] wip/carter/remove_x87Registers: fix bad paren deletion (bedd77a)

git at git.haskell.org git at git.haskell.org
Thu Dec 27 17:00:06 UTC 2018


Repository : ssh://git@git.haskell.org/ghc

On branch  : wip/carter/remove_x87Registers
Link       : http://ghc.haskell.org/trac/ghc/changeset/bedd77aa73af01229eb1de0e478a1dcf73bcc361/ghc

>---------------------------------------------------------------

commit bedd77aa73af01229eb1de0e478a1dcf73bcc361
Author: Carter Tazio Schonwald <carter.schonwald at gmail.com>
Date:   Sat Dec 22 13:03:15 2018 -0500

    fix bad paren deletion


>---------------------------------------------------------------

bedd77aa73af01229eb1de0e478a1dcf73bcc361
 compiler/nativeGen/SPARC/Ppr.hs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/compiler/nativeGen/SPARC/Ppr.hs b/compiler/nativeGen/SPARC/Ppr.hs
index a0655ff..dbd31a2 100644
--- a/compiler/nativeGen/SPARC/Ppr.hs
+++ b/compiler/nativeGen/SPARC/Ppr.hs
@@ -224,7 +224,7 @@ pprFormat x
         II32    -> sLit ""
         II64    -> sLit "d"
         FF32    -> sLit ""
-        FF64    -> sLit "d"
+        FF64    -> sLit "d")
 
 
 -- | Pretty print a format for an instruction suffix.
@@ -238,7 +238,7 @@ pprStFormat x
         II32  -> sLit ""
         II64  -> sLit "x"
         FF32  -> sLit ""
-        FF64  -> sLit "d"
+        FF64  -> sLit "d")
 
 
 



More information about the ghc-commits mailing list