Commit 7addeb4d by Geoffrey Keating Committed by Geoffrey Keating

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
parent 0132823e
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,
......
......@@ -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;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment