varasm.c (record_constant_1): Correct parameter to recursive call in default case.

* varasm.c (record_constant_1): Correct parameter to recursive
	call in default case.

From-SVN: r48347
This commit is contained in:
Geoffrey Keating 2001-12-28 17:57:50 +00:00 committed by Geoffrey Keating
parent 0132823e73
commit 7addeb4dcd
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-12-28 Geoff Keating <geoffk@redhat.com>
* varasm.c (record_constant_1): Correct parameter to recursive
call in default case.
2001-12-28 Jakub Jelinek <jakub@redhat.com>
* config/sparc/sparc.h (ASM_PREFERRED_EH_DATA_FORMAT,

View File

@ -3068,7 +3068,7 @@ record_constant_1 (exp)
tree new = (*lang_hooks.expand_constant) (exp);
if (new != exp)
record_constant_1 (exp);
record_constant_1 (new);
return;
}
}