Skip to content
Snippets Groups Projects
Commit ece19816 authored by sof's avatar sof
Browse files

[project @ 1999-09-21 09:46:04 by sof]

v1.2 of Show Addr instance, pad out to fixed length
parent 777a6a36
No related merge requests found
......@@ -5,6 +5,8 @@
\section[Addr]{Module @Addr@}
\begin{code}
#include "MachDeps.h"
module Addr
( Addr
......@@ -51,8 +53,12 @@ import Int ( indexInt8OffAddr, indexInt16OffAddr
\begin{code}
instance Show Addr where
showsPrec p (A# a) = showHex int
showsPrec p (A# a) rs = pad_out (showHex int rs)
where
-- want 0s prefixed to pad it out to a fixed length.
pad_out ('0':'x':ls) =
'0':'x':(replicate (2*ADDR_SIZE_IN_BYTES - length ls) '0') ++ ls
int =
case word2Integer# (int2Word# (addr2Int# a)) of
(# s, d #) -> J# s d
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment