Commit 68e4d4c5 by Eric Botcazou Committed by Eric Botcazou

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

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
parent d57f4ead
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> 2003-05-30 Stan Shebs <shebs@apple.com>
* system.h: Poison OBJC_PROLOGUE. * system.h: Poison OBJC_PROLOGUE.
......
...@@ -5958,16 +5958,16 @@ incurred. To describe all of this we could specify ...@@ -5958,16 +5958,16 @@ incurred. To describe all of this we could specify
@smallexample @smallexample
(define_cpu_unit "div") (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)") "(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)") "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)") "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)) "f_pipeline, nothing, (port0 | port1))
(define_bypass 4 "float" "simple,mult,div") (define_bypass 4 "float" "simple,mult,div")
...@@ -5983,7 +5983,7 @@ and use it in all @code{define_insn_reservation} as in the following ...@@ -5983,7 +5983,7 @@ and use it in all @code{define_insn_reservation} as in the following
construction construction
@smallexample @smallexample
(define_insn_reservation "simple" 2 (eq_attr "cpu" "int") (define_insn_reservation "simple" 2 (eq_attr "type" "int")
"(i0_pipeline | i1_pipeline), finish") "(i0_pipeline | i1_pipeline), finish")
@end smallexample @end smallexample
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment