md.texi (Automaton pipeline description): Use "type" instead of "cpu" as the attribut...
authorEric Botcazou <ebotcazou@libertysurf.fr>
Sat, 31 May 2003 07:43:47 +0000 (09:43 +0200)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Sat, 31 May 2003 07:43:47 +0000 (07:43 +0000)
* doc/md.texi (Automaton pipeline description): Use
"type" instead of "cpu" as the attribute in the examples.

From-SVN: r67261

gcc/ChangeLog
gcc/doc/md.texi

index fa6bfeb0a0d6f006aa1f67e222f9d0671486a604..18bc820c4b20ff1c29b6d7d0d7f0662221bc4ca3 100644 (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.
index d26fa232ad60a0c5fcc3243a20106a9c47a6d3f3..0ef948ad171f2a9767a25ce722e4b3a0b71db0c5 100644 (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