From 6e62a38d39ea4252c8c25d42644ad108df61990e Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Thu, 16 Dec 2004 15:18:03 -0800 Subject: 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 --- gcc/ChangeLog | 5 +++++ gcc/config/i386/i386.md | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) (limited to 'gcc') 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 + + * config/i386/i386.md (extv, extzv, insv): Revalidate the + operand with ext_register_operand. + 2004-12-16 Kazu Hirata * 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) -- cgit v1.1