diff options
author | John Carr <jfc@mit.edu> | 1997-12-24 14:39:44 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1997-12-24 14:39:44 -0700 |
commit | 6e73e66606ebe0f3a1827b4401d259fac87fb36e (patch) | |
tree | 16ba7b39b3187d844bce4bf136901fa626027edb /gcc/rtl.h | |
parent | 280e521f029df248a105d1bd90c251ef26080f09 (diff) | |
download | gcc-6e73e66606ebe0f3a1827b4401d259fac87fb36e.zip gcc-6e73e66606ebe0f3a1827b4401d259fac87fb36e.tar.gz gcc-6e73e66606ebe0f3a1827b4401d259fac87fb36e.tar.bz2 |
flags.h, [...]: Remove flag_alias_check; optimization is now always enabled.
* flags.h, toplev.c, calls.c, alias.c: Remove flag_alias_check;
optimization is now always enabled.
* calls.c (expand_call): Recognize C++ operator new as malloc-like
function.
* alias.c (memrefs_conflict_p): Eliminate tests now done by
base_alias_check.
(*_dependence): Call canon_rtx before base_alias_check.
(init_alias_once): New function to precompute set of registers which
can hold Pmode function arguments.
* rtl.h: Declare init_alias_once.
* toplev.c (compile_file): Call init_alias_once.
From-SVN: r17226
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1371,6 +1371,7 @@ extern int true_dependence PROTO ((rtx, enum machine_mode, rtx, extern int read_dependence PROTO ((rtx, rtx)); extern int anti_dependence PROTO ((rtx, rtx)); extern int output_dependence PROTO ((rtx, rtx)); +extern void init_alias_once PROTO ((void)); extern void init_alias_analysis PROTO ((void)); extern void end_alias_analysis PROTO ((void)); |