diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1999-12-12 01:06:29 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1999-12-12 01:06:29 +0000 |
commit | 69ddee61579a886cd70133bce5251a1e41fdfb0e (patch) | |
tree | 0c8618d3e4ef36b1238130bf315f723b2ca717d2 /gcc/config/i386/i386-protos.h | |
parent | 486837a79c0b0c8ec9bdacacddf62ca20ff90507 (diff) | |
download | gcc-69ddee61579a886cd70133bce5251a1e41fdfb0e.zip gcc-69ddee61579a886cd70133bce5251a1e41fdfb0e.tar.gz gcc-69ddee61579a886cd70133bce5251a1e41fdfb0e.tar.bz2 |
i386-protos.h (output_387_binary_op, [...]): Constify a char*.
* i386-protos.h (output_387_binary_op, output_fix_trunc,
output_fp_compare): Constify a char*.
* i386.c (ix86_split_to_parts, ix86_safe_length_prefix): Add
static prototypes.
(override_options, ix86_comp_type_attributes, print_operand,
output_387_binary_op, output_fix_trunc, output_fp_compare):
Constify a char*.
(ix86_sched_reorder): Mark parameter `clock_var' with
ATTRIBUTE_UNUSED.
* i386.h (DEBUG_PRINT_REG): Constify a char*.
From-SVN: r30869
Diffstat (limited to 'gcc/config/i386/i386-protos.h')
-rw-r--r-- | gcc/config/i386/i386-protos.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/i386/i386-protos.h b/gcc/config/i386/i386-protos.h index 5c8ffe4..3ab97a7 100644 --- a/gcc/config/i386/i386-protos.h +++ b/gcc/config/i386/i386-protos.h @@ -76,9 +76,9 @@ extern void print_operand_address PROTO((FILE*, rtx)); extern void split_di PROTO((rtx[], int, rtx[], rtx[])); -extern char *output_387_binary_op PROTO((rtx, rtx*)); -extern char *output_fix_trunc PROTO((rtx, rtx*)); -extern char *output_fp_compare PROTO((rtx, rtx*, int, int)); +extern const char *output_387_binary_op PROTO((rtx, rtx*)); +extern const char *output_fix_trunc PROTO((rtx, rtx*)); +extern const char *output_fp_compare PROTO((rtx, rtx*, int, int)); extern void ix86_expand_move PROTO((enum machine_mode, rtx[])); extern void ix86_expand_binary_operator PROTO((enum rtx_code, |