diff options
author | Andreas Jaeger <aj@suse.de> | 2001-01-12 19:00:49 +0100 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2001-01-12 19:00:49 +0100 |
commit | 14052b68db3dcc6797d4bb14f8aedc4fc10b2a7f (patch) | |
tree | bd9480282eb4fe4a38245036c264bcbaebee7384 /gcc/sched-int.h | |
parent | 86aff12599ea901f8116bb76d71542911b8269b0 (diff) | |
download | gcc-14052b68db3dcc6797d4bb14f8aedc4fc10b2a7f.zip gcc-14052b68db3dcc6797d4bb14f8aedc4fc10b2a7f.tar.gz gcc-14052b68db3dcc6797d4bb14f8aedc4fc10b2a7f.tar.bz2 |
haifa-sched.c (restore_line_notes): Remove argument block B since it's unused.
* 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.
From-SVN: r38954
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 fdd49ea..2a7eb6a 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)); |