Commit 35ef2880 by Alexandre Oliva Committed by Alexandre Oliva

* config/sh/sh.c (mova_p): Fix test for mova_const.

From-SVN: r38974
parent 24538dcb
2001-01-13 Alexandre Oliva <aoliva@redhat.com>
* config/sh/sh.c (mova_p): Fix test for mova_const.
2001-01-13 Neil Booth <neil@daikokuya.demon.co.uk>
* fix-header.c (read_scan_file): Use cpp_get_callbacks and
......
......@@ -2105,7 +2105,7 @@ mova_p (insn)
&& GET_CODE (SET_SRC (PATTERN (insn))) == UNSPEC
&& XINT (SET_SRC (PATTERN (insn)), 1) == UNSPEC_MOVA
/* Don't match mova_const. */
&& XVECEXP (SET_SRC (PATTERN (insn)), 0, 0) == LABEL_REF);
&& GET_CODE (XVECEXP (SET_SRC (PATTERN (insn)), 0, 0)) == LABEL_REF);
}
/* Find the last barrier from insn FROM which is close enough to hold the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment