diff options
author | Richard Henderson <rth@redhat.com> | 2004-12-16 15:18:03 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2004-12-16 15:18:03 -0800 |
commit | 6e62a38d39ea4252c8c25d42644ad108df61990e (patch) | |
tree | 2e20a6bec618f565f91f151adf11a542bd97ee6e /gcc | |
parent | 443321ee899a45e40236aebceee90bac70e9b3d4 (diff) | |
download | gcc-6e62a38d39ea4252c8c25d42644ad108df61990e.zip gcc-6e62a38d39ea4252c8c25d42644ad108df61990e.tar.gz gcc-6e62a38d39ea4252c8c25d42644ad108df61990e.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/i386.md | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 195ca37..b288e70 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +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> * global.c: Fix a comment typo. diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 321bca1..72e491c 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -12195,7 +12195,7 @@ /* From mips.md: extract_bit_field doesn't verify that our source matches the predicate, so check it again here. */ - if (! register_operand (operands[1], VOIDmode)) + if (! ext_register_operand (operands[1], VOIDmode)) FAIL; }) @@ -12212,7 +12212,7 @@ /* From mips.md: extract_bit_field doesn't verify that our source matches the predicate, so check it again here. */ - if (! register_operand (operands[1], VOIDmode)) + if (! ext_register_operand (operands[1], VOIDmode)) FAIL; }) @@ -12229,7 +12229,7 @@ /* From mips.md: insert_bit_field doesn't verify that our source matches the predicate, so check it again here. */ - if (! register_operand (operands[0], VOIDmode)) + if (! ext_register_operand (operands[0], VOIDmode)) FAIL; if (TARGET_64BIT) |