diff options
author | Eric Botcazou <ebotcazou@libertysurf.fr> | 2003-05-31 09:43:47 +0200 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2003-05-31 07:43:47 +0000 |
commit | 68e4d4c56e56823001a8cd0a1f4506aab0546d3d (patch) | |
tree | 5435fbb5782c66cdfa8debdefc52973bdfcfa96d /gcc | |
parent | d57f4eadb38d52767d34661cc8249486bc2adec4 (diff) | |
download | gcc-68e4d4c56e56823001a8cd0a1f4506aab0546d3d.zip gcc-68e4d4c56e56823001a8cd0a1f4506aab0546d3d.tar.gz gcc-68e4d4c56e56823001a8cd0a1f4506aab0546d3d.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/doc/md.texi | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fa6bfeb..18bc820 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/doc/md.texi b/gcc/doc/md.texi index d26fa23..0ef948a 100644 --- a/gcc/doc/md.texi +++ b/gcc/doc/md.texi @@ -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 |