X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=compiler%2Fcmm%2FMachOp.hs;h=f2aadcf897d4bb4ee755d38e0c73a3762150765e;hb=55b2f1d1258ca42d72af05c3369793c602da6dff;hp=531a824d72d4fd05a297504b8a0a0900bcca40b3;hpb=7fc749a43b4b6b85d234fa95d4928648259584f4;p=ghc-hetmet.git diff --git a/compiler/cmm/MachOp.hs b/compiler/cmm/MachOp.hs index 531a824..f2aadcf 100644 --- a/compiler/cmm/MachOp.hs +++ b/compiler/cmm/MachOp.hs @@ -1,3 +1,10 @@ +{-# OPTIONS -w #-} +-- The above warning supression flag is a temporary kludge. +-- While working on this module you are encouraged to remove it and fix +-- any warnings in the module. See +-- http://hackage.haskell.org/trac/ghc/wiki/Commentary/CodingStyle#Warnings +-- for details + ----------------------------------------------------------------------------- -- -- (c) The University of Glasgow 2002-2006 @@ -6,13 +13,6 @@ -- ----------------------------------------------------------------------------- -{-# OPTIONS -w #-} --- The above warning supression flag is a temporary kludge. --- While working on this module you are encouraged to remove it and fix --- any warnings in the module. See --- http://hackage.haskell.org/trac/ghc/wiki/Commentary/CodingStyle#Warnings --- for details - module MachOp ( MachRep(..), machRepBitWidth, @@ -90,6 +90,7 @@ module MachOp ( import Constants import Outputable +import FastString -- ----------------------------------------------------------------------------- -- MachRep @@ -125,14 +126,14 @@ data MachRep | F80 -- extended double-precision, used in x86 native codegen only. deriving (Eq, Ord, Show) -mrStr I8 = SLIT("I8") -mrStr I16 = SLIT("I16") -mrStr I32 = SLIT("I32") -mrStr I64 = SLIT("I64") -mrStr I128 = SLIT("I128") -mrStr F32 = SLIT("F32") -mrStr F64 = SLIT("F64") -mrStr F80 = SLIT("F80") +mrStr I8 = sLit "I8" +mrStr I16 = sLit "I16" +mrStr I32 = sLit "I32" +mrStr I64 = sLit "I64" +mrStr I128 = sLit "I128" +mrStr F32 = sLit "F32" +mrStr F64 = sLit "F64" +mrStr F80 = sLit "F80" instance Outputable MachRep where ppr rep = ptext (mrStr rep) @@ -283,10 +284,10 @@ data MachHint | FloatHint deriving Eq -mhStr NoHint = SLIT("NoHint") -mhStr PtrHint = SLIT("PtrHint") -mhStr SignedHint = SLIT("SignedHint") -mhStr FloatHint = SLIT("FloatHint") +mhStr NoHint = sLit "NoHint" +mhStr PtrHint = sLit "PtrHint" +mhStr SignedHint = sLit "SignedHint" +mhStr FloatHint = sLit "FloatHint" instance Outputable MachHint where ppr hint = ptext (mhStr hint)