diff options
author | Eric Botcazou <ebotcazou@libertysurf.fr> | 2003-10-18 16:55:00 +0200 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2003-10-18 14:55:00 +0000 |
commit | a74f24872a98de37be70ffad17f47ace80241190 (patch) | |
tree | 0217d3d5675c927ed4572ba84a16d1ace729fd3b | |
parent | 807a4cfd730fff21385ed1110413663c9bb8d054 (diff) | |
download | gcc-a74f24872a98de37be70ffad17f47ace80241190.zip gcc-a74f24872a98de37be70ffad17f47ace80241190.tar.gz gcc-a74f24872a98de37be70ffad17f47ace80241190.tar.bz2 |
k6.md (k6_alux): Use the 'mode' attribute instead of match_operand.
* config/i386/k6.md (k6_alux): Use the 'mode' attribute instead of
match_operand.
From-SVN: r72639
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/k6.md | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d451f0b..fb59308 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2003-10-18 Eric Botcazou <ebotcazou@libertysurf.fr> + * config/i386/k6.md (k6_alux): Use the 'mode' attribute instead of + match_operand. + +2003-10-18 Eric Botcazou <ebotcazou@libertysurf.fr> + * config/sparc/sparc.c (function_arg_record_value_1): New fourth parameter packed_p. Search for a DECL_PACKED field only if packed_p is false. Pass packed_p recursively. diff --git a/gcc/config/i386/k6.md b/gcc/config/i386/k6.md index 8a6e5f7..edd12f6 100644 --- a/gcc/config/i386/k6.md +++ b/gcc/config/i386/k6.md @@ -49,7 +49,7 @@ (define_function_unit "k6_alux" 1 0 (and (eq_attr "cpu" "k6") (and (eq_attr "type" "alu,alu1,negnot,icmp,test,imovx,incdec") - (match_operand:QI 0 "general_operand" ""))) + (eq_attr "mode" "QI"))) 1 1) (define_function_unit "k6_alu" 2 0 |