From: Richard Henderson Date: Thu, 16 Dec 2004 23:18:03 +0000 (-0800) Subject: i386.md (extv, [...]): Revalidate the operand with ext_register_operand. X-Git-Tag: releases/gcc-4.0.0~2105 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6e62a38d39ea4252c8c25d42644ad108df61990e;p=thirdparty%2Fgcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 195ca379fafa..b288e70dd95e 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 321bca13cccc..72e491cd5d02 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)