diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-01-23 19:45:50 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-01-23 19:45:50 +0000 |
commit | a8482e91d66166ec082f4240b4192dbc3f294982 (patch) | |
tree | 55c79465cdc5b1c6462772036b913316f9fc2f6f /gcc/output.h | |
parent | 7df8690a400db113b722052c4dd8f374ba20d45c (diff) | |
download | gcc-a8482e91d66166ec082f4240b4192dbc3f294982.tar.gz |
* final.c (bb_str): Qualify a char* with the keyword `const'.
(add_bb_string, final_scan_insn, output_asm_insn): Likewise.
* fix-header.c (read_scan_file): Likewise.
* genoutput.c (output_epilogue, process_template): Likewise.
* local-alloc.c (requires_inout, block_alloc): Likewise.
* output.h (output_asm_insn, assemble_string): Likewise.
* recog.c (recog_constraints, check_asm_operands,
decode_asm_operands, extract_insn, preprocess_constraints,
constrain_operands): Likewise.
* recog.h (operand_alternative, recog_constraints, insn_template,
insn_outfun, insn_operand_constraint, insn_name): Likewise.
* regclass.c (record_reg_classes, scan_one_insn): Likewise.
* regmove.c (find_matches): Likewise.
* reload.c (alternative_allows_memconst): Likewise.
* reload1.c (constraint_accepts_reg_p,
reload_cse_simplify_operands): Likewise.
* rtl.h (decode_asm_operands): Likewise.
* scan.h (fn_decl): Likewise.
* varasm.c (assemble_string): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24834 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/output.h')
-rw-r--r-- | gcc/output.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/output.h b/gcc/output.h index d677c012e05..a7fe6937210 100644 --- a/gcc/output.h +++ b/gcc/output.h @@ -81,7 +81,7 @@ extern void output_operand_lossage PROTO((const char *)); /* Output a string of assembler code, substituting insn operands. Defined in final.c. */ -extern void output_asm_insn PROTO((char *, rtx *)); +extern void output_asm_insn PROTO((const char *, rtx *)); /* Compute a worst-case reference address of a branch so that it can be safely used in the presence of aligned labels. @@ -245,7 +245,7 @@ extern void assemble_zeros PROTO((int)); extern void assemble_align PROTO((int)); /* Assemble a string constant with the specified C string as contents. */ -extern void assemble_string PROTO((char *, int)); +extern void assemble_string PROTO((const char *, int)); /* Assemble everything that is needed for a variable or function declaration. Not used for automatic variables, and not used for function definitions. Should not be called for variables of incomplete structure type. |