diff options
author | Richard Henderson <rth@cygnus.com> | 1998-06-02 16:12:06 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1998-06-02 16:12:06 -0700 |
commit | dc2a47ed40a18344dfbca446f608df2e48a7b02e (patch) | |
tree | 3e6a4a096f72c42275a4d8ea50bcf34ae2e6b12e /gcc/jump.c | |
parent | 06abe5a483acb39455d83998cbafb40818261670 (diff) | |
download | gcc-dc2a47ed40a18344dfbca446f608df2e48a7b02e.zip gcc-dc2a47ed40a18344dfbca446f608df2e48a7b02e.tar.gz gcc-dc2a47ed40a18344dfbca446f608df2e48a7b02e.tar.bz2 |
jump.c (jump_optimize): Remove debug messages accidentally left in with the previous change.
* jump.c (jump_optimize): Remove debug messages accidentally left in
with the previous change.
From-SVN: r20203
Diffstat (limited to 'gcc/jump.c')
-rw-r--r-- | gcc/jump.c | 20 |
1 files changed, 0 insertions, 20 deletions
@@ -804,16 +804,6 @@ jump_optimize (f, cross_jump, noop_moves, after_regscan) rtx q; #endif - if (!(GET_CODE (SET_SRC (temp4)) == REG - || GET_CODE (SET_SRC (temp4)) == SUBREG - || (GET_CODE (SET_SRC (temp4)) == MEM - && RTX_UNCHANGING_P (SET_SRC (temp4))) - || CONSTANT_P (SET_SRC (temp4)))) - { - fprintf(stderr, "\nxyzzy 1\n"); - debug_rtx (temp4); - } - /* Set P to the first jump insn that goes around "x = a;". */ for (p = temp; nuses && p; p = prev_nonnote_insn (p)) { @@ -1206,16 +1196,6 @@ jump_optimize (f, cross_jump, noop_moves, after_regscan) #endif ) { - if (! (GET_CODE (temp2) == REG - || (GET_CODE (temp2) == MEM && RTX_UNCHANGING_P (temp2)) - || GET_CODE (temp2) == SUBREG - /* ??? How about floating point constants? */ - || CONSTANT_P (temp2))) - { - fprintf(stderr, "\nxyzzy 2\n"); - debug_rtx (PATTERN (temp)); - } - #ifdef HAVE_conditional_move /* First try a conditional move. */ { |