diff options
| author | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-10-13 19:28:07 +0000 |
|---|---|---|
| committer | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-10-13 19:28:07 +0000 |
| commit | f4e55e4d4f6f95e335c8e5f86224e6f4ee20d8d9 (patch) | |
| tree | aa3e0eef724d11337589a5823476505383cd567d | |
| parent | 47f97894e688ec5e6790e21ce73a355f270341db (diff) | |
| download | ppe42-gcc-f4e55e4d4f6f95e335c8e5f86224e6f4ee20d8d9.tar.gz ppe42-gcc-f4e55e4d4f6f95e335c8e5f86224e6f4ee20d8d9.zip | |
* c-common.c (c_expand_builtin): PARAMS-ize prototype.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36863 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/c-common.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 899008330e0..3d369f74c70 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-10-13 Alexandre Oliva <aoliva@redhat.com> + + * c-common.c (c_expand_builtin): PARAMS-ize prototype. + 2000-10-12 Marek Michalkiewicz <marekm@linux.org.pl> * config/avr/avr.c (output_movhi, output_movsisf): Fix loading diff --git a/gcc/c-common.c b/gcc/c-common.c index 3d3e7c209b3..3b4d2709c41 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -1740,7 +1740,7 @@ static const format_flag_spec *get_flag_spec PARAMS ((const format_flag_spec *, static void check_format_types PARAMS ((int *, format_wanted_type *)); static int is_valid_printf_arglist PARAMS ((tree)); -static rtx c_expand_builtin (tree, rtx, enum machine_mode, enum expand_modifier); +static rtx c_expand_builtin PARAMS ((tree, rtx, enum machine_mode, enum expand_modifier)); static rtx c_expand_builtin_printf PARAMS ((tree, rtx, enum machine_mode, enum expand_modifier, int)); |

