aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtl.h
diff options
context:
space:
mode:
authorAndrew MacLeod <amacleod@cygnus.com>1999-02-22 14:11:58 +0000
committerAndrew Macleod <amacleod@gcc.gnu.org>1999-02-22 14:11:58 +0000
commit89d3d4424947aa2328d79659144f3bbad6998255 (patch)
treecf2aec9a50f27da3426d83aa75ac8d37004224c7 /gcc/rtl.h
parenta4c6502a661a4d0a6e157e118c7be4178176f743 (diff)
downloadgcc-89d3d4424947aa2328d79659144f3bbad6998255.zip
gcc-89d3d4424947aa2328d79659144f3bbad6998255.tar.gz
gcc-89d3d4424947aa2328d79659144f3bbad6998255.tar.bz2
loop.c (libcall_other_regs): Make extern.
* loop.c (libcall_other_regs): Make extern. * rtl.h (find_last_value): Add parameter to prototype. (libcall_other_reg): Add extern declaration. * rtlanal.c (find_last_value): Add another parameter to allow a definition using a hardware register to be found as well. From-SVN: r25378
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r--gcc/rtl.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h
index f036a6f..2839c88 100644
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -1013,7 +1013,7 @@ extern int modified_in_p PROTO((rtx, rtx));
extern int reg_set_p PROTO((rtx, rtx));
extern rtx single_set PROTO((rtx));
extern int multiple_sets PROTO((rtx));
-extern rtx find_last_value PROTO((rtx, rtx *, rtx));
+extern rtx find_last_value PROTO((rtx, rtx *, rtx, int));
extern int refers_to_regno_p PROTO((int, int, rtx, rtx *));
extern int reg_overlap_mentioned_p PROTO((rtx, rtx));
extern void note_stores PROTO((rtx, void (*)()));
@@ -1390,6 +1390,7 @@ extern void print_inline_rtx PROTO ((FILE *, rtx, int));
/* In loop.c */
extern void init_loop PROTO ((void));
+extern rtx libcall_other_reg PROTO ((rtx, rtx));
#ifdef BUFSIZ
extern void loop_optimize PROTO ((rtx, FILE *, int, int));
#endif