diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-02 06:47:15 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-02 06:47:15 +0000 |
commit | e13b27eaa91de3705c19933d8031cf48bf8e6a85 (patch) | |
tree | 62afefd4bab9620372915f95e5cbfbde897c66ee /gcc/reorg.c | |
parent | 5a5696f27ba17b2e32329aff9c0544b3366b1d54 (diff) | |
download | gcc-e13b27eaa91de3705c19933d8031cf48bf8e6a85.tar.gz |
* combine.c (simplify_shift_const): Remove extra semicolon.
* dwarf2out.c (remove_AT): Likewise.
* expmed.c (expand_mult): Likewise.
* gcov.c (create_program_flow_graph): Likewise.
* reorg.c (mostly_true_jump): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29050 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/reorg.c')
-rw-r--r-- | gcc/reorg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/reorg.c b/gcc/reorg.c index 43203350efb..2db04a169b2 100644 --- a/gcc/reorg.c +++ b/gcc/reorg.c @@ -1004,7 +1004,7 @@ mostly_true_jump (jump_insn, condition) return (target_label == 0 || INSN_UID (jump_insn) > max_uid || INSN_UID (target_label) > max_uid || (uid_to_ruid[INSN_UID (jump_insn)] - > uid_to_ruid[INSN_UID (target_label)]));; + > uid_to_ruid[INSN_UID (target_label)])); } /* Return the condition under which INSN will branch to TARGET. If TARGET |