Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
GHC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alex D
GHC
Commits
552f8910
Commit
552f8910
authored
Jun 24, 2011
by
Ian Lynagh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove a couple of unused variables
parent
03e16814
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
4 deletions
+0
-4
rts/Printer.c
rts/Printer.c
+0
-4
No files found.
rts/Printer.c
View file @
552f8910
...
...
@@ -418,10 +418,8 @@ printStackObj( StgPtr sp )
static
void
printSmallBitmap
(
StgPtr
spBottom
,
StgPtr
payload
,
StgWord
bitmap
,
nat
size
)
{
StgPtr
p
;
nat
i
;
p
=
payload
;
for
(
i
=
0
;
i
<
size
;
i
++
,
bitmap
>>=
1
)
{
debugBelch
(
" stk[%ld] (%p) = "
,
(
long
)(
spBottom
-
(
payload
+
i
)),
payload
+
i
);
if
((
bitmap
&
1
)
==
0
)
{
...
...
@@ -531,11 +529,9 @@ printStackChunk( StgPtr sp, StgPtr spBottom )
{
StgFunInfoTable
*
fun_info
;
StgRetFun
*
ret_fun
;
nat
size
;
ret_fun
=
(
StgRetFun
*
)
sp
;
fun_info
=
get_fun_itbl
(
ret_fun
->
fun
);
size
=
ret_fun
->
size
;
debugBelch
(
"RET_FUN (%p) (type=%d)
\n
"
,
ret_fun
->
fun
,
fun_info
->
f
.
fun_type
);
switch
(
fun_info
->
f
.
fun_type
)
{
case
ARG_GEN
:
...
...
Write
Preview
Markdown
is supported
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