diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2011-02-15 18:36:31 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2011-02-15 18:36:31 +0000 |
commit | 1b9a784a8988c08979949b85fcf9746574a72ae0 (patch) | |
tree | 4c404f523327ba8ce7777c7409a24b2940702c7a /gcc/tree-ssanames.c | |
parent | 27c6b08686959f731523cb673db850bfd435795b (diff) | |
download | gcc-1b9a784a8988c08979949b85fcf9746574a72ae0.zip gcc-1b9a784a8988c08979949b85fcf9746574a72ae0.tar.gz gcc-1b9a784a8988c08979949b85fcf9746574a72ae0.tar.bz2 |
re PR debug/47106 (-fcompare-debug failure (length) with -fpartial-inlining -flto -fconserve-stack)
PR debug/47106
PR debug/47402
* tree-flow.h (FOR_EACH_REFERENCED_VAR): Add FN argument.
Adjust all users. Pass FN to...
* tree-flow-inline.h (first_referenced_var): ... this. Add
fn argument.
* ipa-struct-reorg.c: Adjust.
* tree-dfa.c: Adjust.
* tree-into-ssa.c: Adjust.
* tree-sra.c: Adjust.
* tree-ssa-alias.c: Adjust.
* tree-ssa-live.c: Adjust.
* tree-ssa.c: Adjust.
* tree-ssanames.c: Adjust.
* tree-tailcall.c: Adjust.
From-SVN: r170186
Diffstat (limited to 'gcc/tree-ssanames.c')
-rw-r--r-- | gcc/tree-ssanames.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssanames.c b/gcc/tree-ssanames.c index cf67f6c..c76dba5e 100644 --- a/gcc/tree-ssanames.c +++ b/gcc/tree-ssanames.c @@ -340,7 +340,7 @@ release_dead_ssa_names (void) /* Current defs point to various dead SSA names that in turn point to eventually dead variables so a bunch of memory is held live. */ - FOR_EACH_REFERENCED_VAR (t, rvi) + FOR_EACH_REFERENCED_VAR (cfun, t, rvi) set_current_def (t, NULL); /* Now release the freelist. */ for (t = FREE_SSANAMES (cfun); t; t = next) |