expr.c (cplus_expand_constant): Use C90 prototype style.

* expr.c (cplus_expand_constant): Use C90 prototype style.
	(cxx_expand_expr): Likewise.

From-SVN: r64064
This commit is contained in:
Gabriel Dos Reis 2003-03-10 05:44:46 +00:00 committed by Gabriel Dos Reis
parent c727e7a052
commit d9b4e85e24
2 changed files with 7 additions and 7 deletions

View File

@ -1,3 +1,8 @@
2003-03-10 Gabriel Dos Reis <gdr@integrable-solutions.net>
* expr.c (cplus_expand_constant): Use C90 prototype style.
(cxx_expand_expr): Likewise.
2003-03-09 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
PR c++/9970

View File

@ -38,8 +38,7 @@ Boston, MA 02111-1307, USA. */
constants. */
tree
cplus_expand_constant (cst)
tree cst;
cplus_expand_constant (tree cst)
{
switch (TREE_CODE (cst))
{
@ -79,11 +78,7 @@ cplus_expand_constant (cst)
/* Hook used by expand_expr to expand language-specific tree codes. */
rtx
cxx_expand_expr (exp, target, tmode, modifier)
tree exp;
rtx target;
enum machine_mode tmode;
int modifier; /* Actually an enum expand_modifier. */
cxx_expand_expr (tree exp, rtx target, enum machine_mode tmode, int modifier)
{
tree type = TREE_TYPE (exp);
register enum machine_mode mode = TYPE_MODE (type);