Commit b01258dd by Kazu Hirata Committed by Kazu Hirata

ip2k.c (ip2k_reorg): Use INSN_P instead of its definition.

	* config/ip2k/ip2k.c (ip2k_reorg): Use INSN_P instead of its
	definition.

From-SVN: r68658
parent d6553b54
2003-06-28 Kazu Hirata <kazu@cs.umass.edu>
* config/ip2k/ip2k.c (ip2k_reorg): Use INSN_P instead of its
definition.
2003-06-29 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
* opts.c: Include insn-attr.h.
......
......@@ -5359,7 +5359,7 @@ ip2k_reorg ()
|| GET_CODE (insn) == BARRIER)
continue;
if (GET_RTX_CLASS (GET_CODE (insn)) != 'i')
if (!INSN_P (insn))
continue;
body = PATTERN (insn);
......
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