diff options
author | Nick Clifton <nickc@redhat.com> | 2003-02-28 14:50:09 +0000 |
---|---|---|
committer | Nick Clifton <nickc@gcc.gnu.org> | 2003-02-28 14:50:09 +0000 |
commit | b93828f33afe9a08ce7c39f87630ee4b2e88bcae (patch) | |
tree | b4dc865787fae980dec2e75c04669721a0bdf662 /gcc | |
parent | f3c7ed6b01dd334c2d665cf74bf0f727bcb16f9a (diff) | |
download | gcc-b93828f33afe9a08ce7c39f87630ee4b2e88bcae.zip gcc-b93828f33afe9a08ce7c39f87630ee4b2e88bcae.tar.gz gcc-b93828f33afe9a08ce7c39f87630ee4b2e88bcae.tar.bz2 |
(note_invalid_constants): Change parameter type from bool to int.
From-SVN: r63560
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/arm/arm.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a4f86aa..fb08e3a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-02-28 Nick Clifton <nickc@redhat.com> + + * config/arm/arm.c (note_invalid_constants): Change parameter type + from bool to int. + 2003-02-28 Kazu Hirata <kazu@cs.umass.edu> * config/h8300/h8300.md (*tst_extzv_bitqi_1_n): Accept the diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c index 092e934..8f3afef 100644 --- a/gcc/config/arm/arm.c +++ b/gcc/config/arm/arm.c @@ -113,7 +113,7 @@ static int arm_barrier_cost PARAMS ((rtx)); static Mfix * create_fix_barrier PARAMS ((Mfix *, Hint)); static void push_minipool_barrier PARAMS ((rtx, Hint)); static void push_minipool_fix PARAMS ((rtx, Hint, rtx *, Mmode, rtx)); -static bool note_invalid_constants PARAMS ((rtx, Hint, bool)); +static bool note_invalid_constants PARAMS ((rtx, Hint, int)); static int current_file_function_operand PARAMS ((rtx)); static Ulong arm_compute_save_reg0_reg12_mask PARAMS ((void)); static Ulong arm_compute_save_reg_mask PARAMS ((void)); @@ -6923,7 +6923,7 @@ static bool note_invalid_constants (insn, address, do_pushes) rtx insn; HOST_WIDE_INT address; - bool do_pushes; + int do_pushes; { bool result = false; int opno; |