* config/sh/sh.c (fixup_mova): Skip notes.

From-SVN: r105612
This commit is contained in:
Kaz Kojima 2005-10-19 12:27:25 +00:00
parent 7633f08ea7
commit 0bf7267236
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2005-10-19 Kaz Kojima <kkojima@gcc.gnu.org>
* config/sh/sh.c (fixup_mova): Skip notes.
2005-10-19 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
* config/s390/s390-protos.h (s390_hard_regno_rename_ok): Add prototype.

View File

@ -3406,7 +3406,8 @@ fixup_mova (rtx mova)
gcc_assert (worker
&& GET_CODE (worker) != CODE_LABEL
&& GET_CODE (worker) != JUMP_INSN);
} while (recog_memoized (worker) != CODE_FOR_casesi_worker_1);
} while (GET_CODE (worker) == NOTE
|| recog_memoized (worker) != CODE_FOR_casesi_worker_1);
wpat = PATTERN (worker);
wpat0 = XVECEXP (wpat, 0, 0);
wpat1 = XVECEXP (wpat, 0, 1);