diff options
author | Andreas Jaeger <aj@suse.de> | 2001-07-30 20:04:33 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2001-07-30 20:04:33 +0200 |
commit | 57cb6d521aff11ba862ad3b72fa4eb97fcf5c116 (patch) | |
tree | 6f14be388d2d55c84523eb6739cdd6963a3f8f37 /gcc/cse.c | |
parent | d76cbbc844a6f08555965f384c094f0626da8d3d (diff) | |
download | gcc-57cb6d521aff11ba862ad3b72fa4eb97fcf5c116.zip gcc-57cb6d521aff11ba862ad3b72fa4eb97fcf5c116.tar.gz gcc-57cb6d521aff11ba862ad3b72fa4eb97fcf5c116.tar.bz2 |
jump.c: Add prototype for mark_modified_reg.
* jump.c: Add prototype for mark_modified_reg.
* cse.c (set_live_p): Add unused attribute.
* gcov.c (calculate_branch_probs): Use gcov_type to avoid
overflow.
(scan_for_source_files): Use long for count to avoid overflow.
(output_data): Likewise.
(output_data): Don't use string concatatenation to silence gcc
-traditional.
* predict.c: Fix typos and grammar.
* gcse.c (insert_insn_end_bb): Remove unused variables.
For cp:
* decl2.c: Remove unused var global_temp_name_counter.
From-SVN: r44479
Diffstat (limited to 'gcc/cse.c')
-rw-r--r-- | gcc/cse.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7489,7 +7489,7 @@ count_reg_usage (x, counts, dest, incr) static bool set_live_p (set, insn, counts) rtx set; - rtx insn; + rtx insn ATTRIBUTE_UNUSED; /* Only used with HAVE_cc0. */ int *counts; { #ifdef HAVE_cc0 |