diff options
| author | davem <davem@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-04 00:55:18 +0000 |
|---|---|---|
| committer | davem <davem@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-04 00:55:18 +0000 |
| commit | b66dff68872b16a1da49f25f2deddffd4f0bf3ff (patch) | |
| tree | 2ce55230e45310c95357a841faed10b06023baf6 | |
| parent | 79f66ba126722e5f43309e0f54d6eded4b515416 (diff) | |
| download | ppe42-gcc-b66dff68872b16a1da49f25f2deddffd4f0bf3ff.tar.gz ppe42-gcc-b66dff68872b16a1da49f25f2deddffd4f0bf3ff.zip | |
2002-05-03 David S. Miller <davem@redhat.com>
* target-defs.h (TARGET_SCHED_CYCLE_DISPLAY): Delete.
* target.h (struct gcc_target): Delete cycle_display member.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53138 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/target-def.h | 2 | ||||
| -rw-r--r-- | gcc/target.h | 6 |
3 files changed, 5 insertions, 8 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d838272ff98..ebd25b407a3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-05-03 David S. Miller <davem@redhat.com> + + * target-defs.h (TARGET_SCHED_CYCLE_DISPLAY): Delete. + * target.h (struct gcc_target): Delete cycle_display member. + 2002-05-03 Richard Henderson <rth@redhat.com> * real.c (etoasc): Strip most trailing zeros for clarity. diff --git a/gcc/target-def.h b/gcc/target-def.h index 7d287a76b50..76d238e0726 100644 --- a/gcc/target-def.h +++ b/gcc/target-def.h @@ -144,7 +144,6 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define TARGET_SCHED_FINISH 0 #define TARGET_SCHED_REORDER 0 #define TARGET_SCHED_REORDER2 0 -#define TARGET_SCHED_CYCLE_DISPLAY 0 #define TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE 0 #define TARGET_SCHED_INIT_DFA_PRE_CYCLE_INSN 0 #define TARGET_SCHED_DFA_PRE_CYCLE_INSN 0 @@ -163,7 +162,6 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. TARGET_SCHED_FINISH, \ TARGET_SCHED_REORDER, \ TARGET_SCHED_REORDER2, \ - TARGET_SCHED_CYCLE_DISPLAY, \ TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE, \ TARGET_SCHED_INIT_DFA_PRE_CYCLE_INSN, \ TARGET_SCHED_DFA_PRE_CYCLE_INSN, \ diff --git a/gcc/target.h b/gcc/target.h index 6d8103e1930..1f294126ae9 100644 --- a/gcc/target.h +++ b/gcc/target.h @@ -130,12 +130,6 @@ struct gcc_target int (* reorder) PARAMS ((FILE *, int, rtx *, int *, int)); int (* reorder2) PARAMS ((FILE *, int, rtx *, int *, int)); - /* cycle_display is a pointer to a function which can emit - data into the assembly stream about the current cycle. - Arguments are CLOCK, the data to emit, and LAST, the last - insn in the new chain we're building. Returns a new LAST. - The default is to do nothing. */ - rtx (* cycle_display) PARAMS ((int clock, rtx last)); /* The following member value is a pointer to a function returning nonzero if we should use DFA based scheduling. The default is to use the old pipeline scheduler. */ |

