diff options
author | Jan Hubicka <jh@suse.cz> | 2002-06-06 23:20:43 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2002-06-06 21:20:43 +0000 |
commit | 0d682900c62864d3a11399087144d72c27a88c73 (patch) | |
tree | faa2390f8f70ae3e60f4e184669ef5304b7cb309 /gcc/rtl.h | |
parent | c991649cef7449cefc631fcbcf54c5fd181661c2 (diff) | |
download | gcc-0d682900c62864d3a11399087144d72c27a88c73.zip gcc-0d682900c62864d3a11399087144d72c27a88c73.tar.gz gcc-0d682900c62864d3a11399087144d72c27a88c73.tar.bz2 |
i386.md (and promoting splitters): Disable QI to SImode promoting when doing so changes immediate to be 32bit.
* i386.md (and promoting splitters): Disable QI to SImode promoting
when doing so changes immediate to be 32bit.
* rtl.h (emit_*_scope): Declare.
* emit-rtl.c (emit_*_scope): New global functions.
(try_split): Copy scope.
* ifcvt.c (noce_try_store_flag, noce_try_store_flag_constants,
noce_try_flag_inc, noce_try_store_flag_mask, noce_try_cmove,
noce_try_cmove_arith, noce_try_minmax, noce_try_abs,
noce_process_if_block, find_cond_trap): Copy scopes.
* recog.c (peephole2_optimize): likewise.
From-SVN: r54327
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1375,14 +1375,20 @@ extern rtx assign_stack_temp_for_type PARAMS ((enum machine_mode, extern rtx assign_temp PARAMS ((tree, int, int, int)); /* In emit-rtl.c */ extern rtx emit_insn_before PARAMS ((rtx, rtx)); +extern rtx emit_insn_before_scope PARAMS ((rtx, rtx, tree)); extern rtx emit_jump_insn_before PARAMS ((rtx, rtx)); +extern rtx emit_jump_insn_before_scope PARAMS ((rtx, rtx, tree)); extern rtx emit_call_insn_before PARAMS ((rtx, rtx)); +extern rtx emit_call_insn_before_scope PARAMS ((rtx, rtx, tree)); extern rtx emit_barrier_before PARAMS ((rtx)); extern rtx emit_label_before PARAMS ((rtx, rtx)); extern rtx emit_note_before PARAMS ((int, rtx)); extern rtx emit_insn_after PARAMS ((rtx, rtx)); +extern rtx emit_insn_after_scope PARAMS ((rtx, rtx, tree)); extern rtx emit_jump_insn_after PARAMS ((rtx, rtx)); +extern rtx emit_jump_insn_after_scope PARAMS ((rtx, rtx, tree)); extern rtx emit_call_insn_after PARAMS ((rtx, rtx)); +extern rtx emit_call_insn_after_scope PARAMS ((rtx, rtx, tree)); extern rtx emit_barrier_after PARAMS ((rtx)); extern rtx emit_label_after PARAMS ((rtx, rtx)); extern rtx emit_note_after PARAMS ((int, rtx)); @@ -1390,7 +1396,9 @@ extern rtx emit_line_note_after PARAMS ((const char *, int, rtx)); extern rtx emit_insn PARAMS ((rtx)); extern rtx emit_insns PARAMS ((rtx)); extern rtx emit_insns_before PARAMS ((rtx, rtx)); +extern rtx emit_insns_before_scope PARAMS ((rtx, rtx, tree)); extern rtx emit_insns_after PARAMS ((rtx, rtx)); +extern rtx emit_insns_after_scope PARAMS ((rtx, rtx, tree)); extern rtx emit_jump_insn PARAMS ((rtx)); extern rtx emit_call_insn PARAMS ((rtx)); extern rtx emit_label PARAMS ((rtx)); |