diff options
author | Tom de Vries <tom@codesourcery.com> | 2015-11-02 23:23:19 +0000 |
---|---|---|
committer | Tom de Vries <vries@gcc.gnu.org> | 2015-11-02 23:23:19 +0000 |
commit | b9ae50844f64b039a9acae261b535c9a7a8b6020 (patch) | |
tree | 358f99687b482e875ac8ae4c6f0ef68177bd0c7e /gcc | |
parent | 3b963b33ca3b84d28c8dbd79d08d4f1e5c439925 (diff) | |
download | gcc-b9ae50844f64b039a9acae261b535c9a7a8b6020.zip gcc-b9ae50844f64b039a9acae261b535c9a7a8b6020.tar.gz gcc-b9ae50844f64b039a9acae261b535c9a7a8b6020.tar.bz2 |
Replace make_copy_constraint with make_constraint_from in make_restrict_var_constraints
2015-11-03 Tom de Vries <tom@codesourcery.com>
* tree-ssa-structalias.c (make_restrict_var_constraints): Replace
make_copy_constraint call with make_constraint_from call.
From-SVN: r229683
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/tree-ssa-structalias.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index aa22a17..5e4a226 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2015-11-03 Tom de Vries <tom@codesourcery.com> + + * tree-ssa-structalias.c (make_restrict_var_constraints): Replace + make_copy_constraint call with make_constraint_from call. + 2015-11-02 Andreas Tobler <andreast@gcc.gnu.org> * config/rs6000/freebsd64.h (ASM_SPEC32): Adust spec to handle diff --git a/gcc/tree-ssa-structalias.c b/gcc/tree-ssa-structalias.c index 55f72a2..773731d 100644 --- a/gcc/tree-ssa-structalias.c +++ b/gcc/tree-ssa-structalias.c @@ -5890,7 +5890,7 @@ make_restrict_var_constraints (varinfo_t vi) if (vi->only_restrict_pointers) make_constraint_from_global_restrict (vi, "GLOBAL_RESTRICT", true); else - make_copy_constraint (vi, nonlocal_id); + make_constraint_from (vi, nonlocal_id); } } |