diff options
author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-09-07 23:25:01 +0000 |
---|---|---|
committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-09-07 23:25:01 +0000 |
commit | 9f5e1a5ad455bf3fcd3fb7d79899f442515a3c78 (patch) | |
tree | 944330803f51ba791ebf2256c7196203c46cdef1 /gcc/rtl.h | |
parent | d8fea5504e5bd095ddb2186c875821a99868559d (diff) | |
download | gcc-9f5e1a5ad455bf3fcd3fb7d79899f442515a3c78.tar.gz |
Fix for PR 3783.
* alias.c (clear_reg_alias_info): New.
* flow.c (attempt_auto_inc): Call clear_reg_alias_info.
* rtl.h (clear_reg_alias_info): Declare.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45482 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h index 75204b66de8..d99388866e0 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -1988,6 +1988,7 @@ extern void fancy_abort PARAMS ((const char *, int, const char *)) #define abort() fancy_abort (__FILE__, __LINE__, __FUNCTION__) /* In alias.c */ +extern void clear_reg_alias_info PARAMS ((rtx)); extern rtx canon_rtx PARAMS ((rtx)); extern int true_dependence PARAMS ((rtx, enum machine_mode, rtx, int (*)(rtx, int))); |