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
17118d27
Commit
17118d27
authored
Apr 25, 2005
by
simonmar
Browse files
[project @ 2005-04-25 15:56:19 by simonmar]
scavenge_one: fix reversed PAP/AP cases
parent
b050008e
Changes
1
Hide whitespace changes
Inline
Side-by-side
ghc/rts/GC.c
View file @
17118d27
...
@@ -3368,11 +3368,11 @@ scavenge_one(StgPtr p)
...
@@ -3368,11 +3368,11 @@ scavenge_one(StgPtr p)
}
}
case
PAP
:
case
PAP
:
p
=
scavenge_AP
((
StgAP
*
)
p
);
p
=
scavenge_
P
AP
((
Stg
P
AP
*
)
p
);
break
;
break
;
case
AP
:
case
AP
:
p
=
scavenge_
P
AP
((
Stg
P
AP
*
)
p
);
p
=
scavenge_AP
((
StgAP
*
)
p
);
break
;
break
;
case
ARR_WORDS
:
case
ARR_WORDS
:
...
...
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