diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1999-02-25 11:43:00 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1999-02-25 11:43:00 +0000 |
commit | a015305167fc1b3f303363003584e2bdb9ef2073 (patch) | |
tree | 9771837c9e72c9f2cfed631eac17213729a669a8 /gcc | |
parent | 43a5dea8483a1489bad552514ef68b87408a3c47 (diff) | |
download | gcc-a015305167fc1b3f303363003584e2bdb9ef2073.zip gcc-a015305167fc1b3f303363003584e2bdb9ef2073.tar.gz gcc-a015305167fc1b3f303363003584e2bdb9ef2073.tar.bz2 |
cse.c (dump_class): Revert last change and make the prototype extern.
* cse.c (dump_class): Revert last change and make the prototype
extern.
From-SVN: r25438
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cse.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b1d72ee..4df2950 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Thu Feb 25 14:32:40 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * cse.c (dump_class): Revert last change and make the prototype + extern. + Thu Feb 25 19:13:42 1999 J"orn Rennecke <amylaar@cygnus.co.uk> * rtl.h (insn_first_p): Don't declare. @@ -663,13 +663,13 @@ static void cse_check_loop_start PROTO((rtx, rtx)); static void cse_set_around_loop PROTO((rtx, rtx, rtx)); static rtx cse_basic_block PROTO((rtx, rtx, struct branch_path *, int)); static void count_reg_usage PROTO((rtx, int *, rtx, int)); -static void dump_class PROTO((struct table_elt*)); +extern void dump_class PROTO((struct table_elt*)); extern int rtx_equal_function_value_matters; /* Dump the expressions in the equivalence class indicated by CLASSP. This function is used only for debugging. */ -static void +void dump_class (classp) struct table_elt *classp; { |