diff options
author | Zack Weinberg <zackw@panix.com> | 2006-01-23 15:15:42 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2006-01-23 15:15:42 +0000 |
commit | 5f2f0edd8e6bdc48ee5f2383a87e91c301cf286a (patch) | |
tree | 3a326a29186290c79c728ba36294ed50b2517f08 /gcc/final.c | |
parent | 1fb49ce77b288e65cb4f0cd417c521cc89ec3f42 (diff) | |
download | gcc-5f2f0edd8e6bdc48ee5f2383a87e91c301cf286a.zip gcc-5f2f0edd8e6bdc48ee5f2383a87e91c301cf286a.tar.gz gcc-5f2f0edd8e6bdc48ee5f2383a87e91c301cf286a.tar.bz2 |
r110126@banpei: zack | 2006-01-22 14:47:42 -0800
r110126@banpei: zack | 2006-01-22 14:47:42 -0800
* genautomata.c (process_state_longest_path, max_dfa_issue_rate)
(output_dfa_max_issue_rate, locked_states_num): Delete.
(struct automaton): Add locked_states field.
(output_dead_lock_vect): Save number of locked states in
automaton->locked_states. If it is zero, don't print anything.
(output_max_insn_queue_index_def): Define max_insn_queue_index const.
(output_internal_dead_lock_func): Only test the dead_lock_vect
for automata that have locked states.
(output_statistics): Always print the number of locked states for
each automaton. Calculate total number of locked states here.
(write_automata): Don't call output_dfa_max_issue_rate.
* genattrtab.c: Define length_unit_log as a const variable.
* genattr.c: Don't emit MAX_DFA_ISSUE_RATE. Declare
max_insn_queue_index const.
* final.c (length_unit_log): Declare const.
* doc/tm.texi: Remove all references to MAX_DFA_ISSUE_RATE.
From-SVN: r110122
Diffstat (limited to 'gcc/final.c')
-rw-r--r-- | gcc/final.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/final.c b/gcc/final.c index b25876a..82fa431 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -138,7 +138,7 @@ static const char *last_filename; /* Whether to force emission of a line note before the next insn. */ static bool force_source_line = false; -extern int length_unit_log; /* This is defined in insn-attrtab.c. */ +extern const int length_unit_log; /* This is defined in insn-attrtab.c. */ /* Nonzero while outputting an `asm' with operands. This means that inconsistencies are the user's fault, so don't die. |