summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen.Lippmeier@anu.edu.au <unknown>2009-01-22 22:51:50 +0000
committerBen.Lippmeier@anu.edu.au <unknown>2009-01-22 22:51:50 +0000
commitc0ea29afb7fcc3e8a69df60704d170d2c45e3d90 (patch)
treeafb1c74985beb593f92aa8c33991953e433bfa13
parentd95190caa3e09b33bca8544051043954ebd89c73 (diff)
downloadhaskell-c0ea29afb7fcc3e8a69df60704d170d2c45e3d90.tar.gz
SPARC NCG: Use .skip instead of .space in assembler
- In the GNU assembler they mean the same thing - The Solaris assembler only has .skip
-rw-r--r--compiler/nativeGen/PprMach.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/nativeGen/PprMach.hs b/compiler/nativeGen/PprMach.hs
index c472b5f32d..8fc9e3dc46 100644
--- a/compiler/nativeGen/PprMach.hs
+++ b/compiler/nativeGen/PprMach.hs
@@ -692,7 +692,7 @@ pprData :: CmmStatic -> Doc
pprData (CmmAlign bytes) = pprAlign bytes
pprData (CmmDataLabel lbl) = pprLabel lbl
pprData (CmmString str) = pprASCII str
-pprData (CmmUninitialised bytes) = ptext (sLit ".space ") <> int bytes
+pprData (CmmUninitialised bytes) = ptext (sLit ".skip ") <> int bytes
pprData (CmmStaticLit lit) = pprDataItem lit
pprGloblDecl :: CLabel -> Doc