md.texi (Automaton pipeline description): Use "type" instead of "cpu" as the attribute in the examples.

* doc/md.texi (Automaton pipeline description): Use
	"type" instead of "cpu" as the attribute in the examples.

From-SVN: r67261
This commit is contained in:
Eric Botcazou 2003-05-31 09:43:47 +02:00 committed by Eric Botcazou
parent d57f4eadb3
commit 68e4d4c56e
2 changed files with 10 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2003-05-31 Eric Botcazou <ebotcazou@libertysurf.fr>
* doc/md.texi (Automaton pipeline description): Use
"type" instead of "cpu" as the attribute in the examples.
2003-05-30 Stan Shebs <shebs@apple.com>
* system.h: Poison OBJC_PROLOGUE.

View File

@ -5958,16 +5958,16 @@ incurred. To describe all of this we could specify
@smallexample
(define_cpu_unit "div")
(define_insn_reservation "simple" 2 (eq_attr "cpu" "int")
(define_insn_reservation "simple" 2 (eq_attr "type" "int")
"(i0_pipeline | i1_pipeline), (port0 | port1)")
(define_insn_reservation "mult" 4 (eq_attr "cpu" "mult")
(define_insn_reservation "mult" 4 (eq_attr "type" "mult")
"i1_pipeline, nothing*2, (port0 | port1)")
(define_insn_reservation "div" 8 (eq_attr "cpu" "div")
(define_insn_reservation "div" 8 (eq_attr "type" "div")
"i1_pipeline, div*7, div + (port0 | port1)")
(define_insn_reservation "float" 3 (eq_attr "cpu" "float")
(define_insn_reservation "float" 3 (eq_attr "type" "float")
"f_pipeline, nothing, (port0 | port1))
(define_bypass 4 "float" "simple,mult,div")
@ -5983,7 +5983,7 @@ and use it in all @code{define_insn_reservation} as in the following
construction
@smallexample
(define_insn_reservation "simple" 2 (eq_attr "cpu" "int")
(define_insn_reservation "simple" 2 (eq_attr "type" "int")
"(i0_pipeline | i1_pipeline), finish")
@end smallexample