Commit 6e62a38d by Richard Henderson Committed by Richard Henderson

i386.md (extv, [...]): Revalidate the operand with ext_register_operand.

        * config/i386/i386.md (extv, extzv, insv): Revalidate the
        operand with ext_register_operand.

From-SVN: r92287
parent 443321ee
2004-12-16 Richard Henderson <rth@redhat.com>
* config/i386/i386.md (extv, extzv, insv): Revalidate the
operand with ext_register_operand.
2004-12-16 Kazu Hirata <kazu@cs.umass.edu> 2004-12-16 Kazu Hirata <kazu@cs.umass.edu>
* global.c: Fix a comment typo. * global.c: Fix a comment typo.
......
...@@ -12195,7 +12195,7 @@ ...@@ -12195,7 +12195,7 @@
/* From mips.md: extract_bit_field doesn't verify that our source /* From mips.md: extract_bit_field doesn't verify that our source
matches the predicate, so check it again here. */ matches the predicate, so check it again here. */
if (! register_operand (operands[1], VOIDmode)) if (! ext_register_operand (operands[1], VOIDmode))
FAIL; FAIL;
}) })
...@@ -12212,7 +12212,7 @@ ...@@ -12212,7 +12212,7 @@
/* From mips.md: extract_bit_field doesn't verify that our source /* From mips.md: extract_bit_field doesn't verify that our source
matches the predicate, so check it again here. */ matches the predicate, so check it again here. */
if (! register_operand (operands[1], VOIDmode)) if (! ext_register_operand (operands[1], VOIDmode))
FAIL; FAIL;
}) })
...@@ -12229,7 +12229,7 @@ ...@@ -12229,7 +12229,7 @@
/* From mips.md: insert_bit_field doesn't verify that our source /* From mips.md: insert_bit_field doesn't verify that our source
matches the predicate, so check it again here. */ matches the predicate, so check it again here. */
if (! register_operand (operands[0], VOIDmode)) if (! ext_register_operand (operands[0], VOIDmode))
FAIL; FAIL;
if (TARGET_64BIT) if (TARGET_64BIT)
......
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