From: Richard Earnshaw Date: Fri, 14 Nov 2003 10:41:47 +0000 (+0000) Subject: arm.c (arm_emit_vector_const, [...]): Use ISO C function definition syntax. X-Git-Tag: releases/gcc-3.4.0~2312 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6f5f24812b7dc0ffcd1a78ba213305572e946de6;p=thirdparty%2Fgcc.git arm.c (arm_emit_vector_const, [...]): Use ISO C function definition syntax. * arm.c (arm_emit_vector_const, arm_output_load_gr): Use ISO C function definition syntax. From-SVN: r73597 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 41450e288416..5483e8dc4185 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-11-14 Richard Earnshaw + + * arm.c (arm_emit_vector_const, arm_output_load_gr): Use ISO C + function definition syntax. + 2003-11-14 Eric Christopher * reload1.c (reload): Revert previous patch. Make diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c index 73ed8822e975..15143d9201c9 100644 --- a/gcc/config/arm/arm.c +++ b/gcc/config/arm/arm.c @@ -13075,9 +13075,7 @@ arm_output_mi_thunk (FILE *file, tree thunk ATTRIBUTE_UNUSED, } int -arm_emit_vector_const (file, x) - FILE * file; - rtx x; +arm_emit_vector_const (FILE *file, rtx x) { int i; const char * pattern; @@ -13106,8 +13104,7 @@ arm_emit_vector_const (file, x) } const char * -arm_output_load_gr (operands) - rtx * operands; +arm_output_load_gr (rtx *operands) { rtx reg; rtx offset;