diff options
author | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-08-22 16:26:03 +0000 |
---|---|---|
committer | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-08-22 16:26:03 +0000 |
commit | 51a26f41aa477749f52ffaa6e9abaea6cc3d9131 (patch) | |
tree | b57a345f2c61e779772fcc0094a264088d00b19c /gcc/config/i386/ppro.md | |
parent | aa951e73c15ab8273794a0267ca82c4a55c5e6f7 (diff) | |
download | gcc-51a26f41aa477749f52ffaa6e9abaea6cc3d9131.tar.gz |
* config/i386/ppro.md (ppro_complex_insn): Add missing check
for cpu==pentiumpro.
* combine.c (struct reg_stat): Fix comment typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86380 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i386/ppro.md')
-rw-r--r-- | gcc/config/i386/ppro.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/config/i386/ppro.md b/gcc/config/i386/ppro.md index c8bd5b45b72..ec82977d8d2 100644 --- a/gcc/config/i386/ppro.md +++ b/gcc/config/i386/ppro.md @@ -137,7 +137,8 @@ ;; on decoder 0, and say that it takes a little while before the result ;; is available. (define_insn_reservation "ppro_complex_insn" 6 - (eq_attr "type" "other,multi,call,callv,str") + (and (eq_attr "cpu" "pentiumpro") + (eq_attr "type" "other,multi,call,callv,str")) "decoder0") ;; imov with memory operands does not use the integer units. |