diff options
author | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-31 07:43:47 +0000 |
---|---|---|
committer | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-31 07:43:47 +0000 |
commit | 0803532c52733b8a02c0b57fb87e3c6313076ce6 (patch) | |
tree | 5435fbb5782c66cdfa8debdefc52973bdfcfa96d | |
parent | 4ba8ddefd67418aea8f5ad348076b40e9500a525 (diff) | |
download | gcc-0803532c52733b8a02c0b57fb87e3c6313076ce6.tar.gz |
* doc/md.texi (Automaton pipeline description): Use
"type" instead of "cpu" as the attribute in the examples.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67261 138bc75d-0d04-0410-961f-82ee72b054a4
-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 fa6bfeb0a0d..18bc820c4b2 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 d26fa232ad6..0ef948ad171 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 |