summaryrefslogtreecommitdiff
path: root/compiler/nativeGen/PprBase.hs
diff options
context:
space:
mode:
authorIan Lynagh <ian@well-typed.com>2013-04-06 16:02:57 +0100
committerIan Lynagh <ian@well-typed.com>2013-04-06 17:10:46 +0100
commit5df7cf32efd7d2200e3fd4f77825087095e1052f (patch)
treec51915db83a1ea4910bdbc35c42e9b7fb558c331 /compiler/nativeGen/PprBase.hs
parent872f2c8b652d0b76f67ca28516d63e85e91dff83 (diff)
downloadhaskell-5df7cf32efd7d2200e3fd4f77825087095e1052f.tar.gz
Detab modules with tabs on 5 lines or fewer
Diffstat (limited to 'compiler/nativeGen/PprBase.hs')
-rw-r--r--compiler/nativeGen/PprBase.hs17
1 files changed, 5 insertions, 12 deletions
diff --git a/compiler/nativeGen/PprBase.hs b/compiler/nativeGen/PprBase.hs
index a9095c0e8b..275d329d2a 100644
--- a/compiler/nativeGen/PprBase.hs
+++ b/compiler/nativeGen/PprBase.hs
@@ -6,18 +6,11 @@
--
-----------------------------------------------------------------------------
-{-# OPTIONS -fno-warn-tabs #-}
--- The above warning supression flag is a temporary kludge.
--- While working on this module you are encouraged to remove it and
--- detab the module (please do the detabbing in a separate patch). See
--- http://hackage.haskell.org/trac/ghc/wiki/Commentary/CodingStyle#TabsvsSpaces
--- for details
-
module PprBase (
- castFloatToWord8Array,
- castDoubleToWord8Array,
- floatToBytes,
- doubleToBytes
+ castFloatToWord8Array,
+ castDoubleToWord8Array,
+ floatToBytes,
+ doubleToBytes
)
where
@@ -41,7 +34,7 @@ castDoubleToWord8Array :: STUArray s Int Double -> ST s (STUArray s Int Word8)
castDoubleToWord8Array = castSTUArray
-- floatToBytes and doubleToBytes convert to the host's byte
--- order. Providing that we're not cross-compiling for a
+-- order. Providing that we're not cross-compiling for a
-- target with the opposite endianness, this should work ok
-- on all targets.