mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-10 05:30:45 -08:00
Mps br/diag: arenavm.c: fix unused var super in vmarenadescribe
Copied from Perforce Change: 162216 ServerID: perforce.ravenbrook.com
This commit is contained in:
parent
597e16d8d4
commit
bfce16e989
1 changed files with 6 additions and 4 deletions
|
|
@ -197,7 +197,6 @@ static Res VMArenaDescribe(Arena arena, mps_lib_FILE *stream)
|
|||
{
|
||||
Res res;
|
||||
VMArena vmArena;
|
||||
ArenaClass super;
|
||||
|
||||
if (!CHECKT(Arena, arena)) return ResFAIL;
|
||||
if (stream == NULL) return ResFAIL;
|
||||
|
|
@ -208,9 +207,12 @@ static Res VMArenaDescribe(Arena arena, mps_lib_FILE *stream)
|
|||
/* ...but the next method is ArenaTrivDescribe, so don't call it;
|
||||
* see impl.c.arena#describe.triv.dont-upcall.
|
||||
*
|
||||
super = ARENA_SUPERCLASS(VMArenaClass);
|
||||
res = super->describe(arena, stream);
|
||||
if (res != ResOK) return res;
|
||||
{
|
||||
ArenaClass super;
|
||||
super = ARENA_SUPERCLASS(VMArenaClass);
|
||||
res = super->describe(arena, stream);
|
||||
if (res != ResOK) return res;
|
||||
}
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue