diff options
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/arm/arm.c | 7 |
2 files changed, 7 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 41450e2..5483e8d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-11-14 Richard Earnshaw <rearnsha@arm.com> + + * arm.c (arm_emit_vector_const, arm_output_load_gr): Use ISO C + function definition syntax. + 2003-11-14 Eric Christopher <echristo@redhat.com> * reload1.c (reload): Revert previous patch. Make diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c index 73ed882..15143d9 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; |
