Commit 36ab44c7 by Richard Earnshaw Committed by Richard Earnshaw

arm.c (note_invalid_constants): Use recog_data.operand_type for recog_op_type.

* arm.c (note_invalid_constants): Use recog_data.operand_type
for recog_op_type.

From-SVN: r29364
parent 7144af14
Sun Sep 12 19:52:10 1999 Richard Earnshaw <rearnsha@arm.com>
* arm.c (note_invalid_constants): Use recog_data.operand_type
for recog_op_type.
Sun Sep 12 15:53:20 1999 Bernd Schmidt <bernds@cygnus.co.uk>
* tree.h (build_common_tree_nodes, build_common_tree_nodes_2):
......
......@@ -4261,7 +4261,7 @@ note_invalid_constants (insn, address)
for (opno = 0; opno < recog_data.n_operands; opno++)
{
/* Things we need to fix can only occur in inputs */
if (recog_op_type[opno] != OP_IN)
if (recog_data.operand_type[opno] != OP_IN)
continue;
/* If this alternative is a memory reference, then any mention
......
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