Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
679364ed
Commit
679364ed
authored
Oct 02, 2001
by
sewardj
Browse files
[project @ 2001-10-02 15:27:15 by sewardj]
Fix spurious sp increment in RET_{VEC_}_SMALL printing code. MERGE TO STABLE
parent
3b5e4697
Changes
1
Hide whitespace changes
Inline
Side-by-side
ghc/rts/Printer.c
View file @
679364ed
/* -----------------------------------------------------------------------------
* $Id: Printer.c,v 1.4
6
2001/
08/21 10:12:02
sewardj Exp $
* $Id: Printer.c,v 1.4
7
2001/
10/02 15:27:15
sewardj Exp $
*
* (c) The GHC Team, 1994-2000.
*
...
...
@@ -462,7 +462,7 @@ void printStackChunk( StgPtr sp, StgPtr spBottom )
printPtr
((
P_
)
*
sp
);
fprintf
(
stderr
,
"
\n
"
);
}
else
{
fprintf
(
stderr
,
"Word# %ld
\n
"
,
*
sp
++
);
fprintf
(
stderr
,
"Word# %ld
\n
"
,
*
sp
);
}
sp
++
;
bitmap
=
bitmap
>>
1
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment