diff options
author | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-12 18:00:49 +0000 |
---|---|---|
committer | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-12 18:00:49 +0000 |
commit | 61ff7bd535b564bd651cf44347a4b27d86b9dc20 (patch) | |
tree | bd9480282eb4fe4a38245036c264bcbaebee7384 /gcc/sched-int.h | |
parent | 9f3e84741f110219afd95975b4e149b2b5021cf8 (diff) | |
download | gcc-61ff7bd535b564bd651cf44347a4b27d86b9dc20.tar.gz |
* haifa-sched.c (restore_line_notes): Remove argument block B
since it's unused.
* sched-ebb.c (schedule_ebb): Change caller.
* sched-rgn.c (schedule_region): Likewise.
* sched-int.h (restore_line_notes): Adjust prototype.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38954 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sched-int.h')
-rw-r--r-- | gcc/sched-int.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/sched-int.h b/gcc/sched-int.h index fdd49eadca7..2a7eb6a0384 100644 --- a/gcc/sched-int.h +++ b/gcc/sched-int.h @@ -1,7 +1,7 @@ /* Instruction scheduling pass. This file contains definitions used internally in the scheduler. Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, - 1999, 2000 Free Software Foundation, Inc. + 1999, 2000, 2001 Free Software Foundation, Inc. This file is part of GNU CC. @@ -272,7 +272,7 @@ extern int no_real_insns_p PARAMS ((rtx, rtx)); extern void rm_line_notes PARAMS ((rtx, rtx)); extern void save_line_notes PARAMS ((int, rtx, rtx)); -extern void restore_line_notes PARAMS ((int, rtx, rtx)); +extern void restore_line_notes PARAMS ((rtx, rtx)); extern void rm_redundant_line_notes PARAMS ((void)); extern void rm_other_notes PARAMS ((rtx, rtx)); |