diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2019-01-17 12:12:58 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2019-01-17 12:12:58 +0000 |
commit | 3d058ebb6ffcac960aa8604ce56b9077854b582a (patch) | |
tree | 14b17c88e815625a5e0951e64f8a3fc0525a98e2 /gcc/tree-ssa-alias.c | |
parent | 143d3b158a8c363459220076f091d60e190b394b (diff) | |
download | gcc-3d058ebb6ffcac960aa8604ce56b9077854b582a.zip gcc-3d058ebb6ffcac960aa8604ce56b9077854b582a.tar.gz gcc-3d058ebb6ffcac960aa8604ce56b9077854b582a.tar.bz2 |
gimple-ssa-isolate-paths.c (stmt_uses_name_in_undefined_way): Replace flag_non_call_exceptions with cfun->can_throw_non_call_exceptions.
* gimple-ssa-isolate-paths.c (stmt_uses_name_in_undefined_way): Replace
flag_non_call_exceptions with cfun->can_throw_non_call_exceptions.
(stmt_uses_0_or_null_in_undefined_way): Likewise.
* tree-ssa-alias.c (same_addr_size_stores_p): Likewise.
From-SVN: r268018
Diffstat (limited to 'gcc/tree-ssa-alias.c')
-rw-r--r-- | gcc/tree-ssa-alias.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-alias.c b/gcc/tree-ssa-alias.c index 10b4d3f..c0f67d1 100644 --- a/gcc/tree-ssa-alias.c +++ b/gcc/tree-ssa-alias.c @@ -2365,7 +2365,7 @@ same_addr_size_stores_p (tree base1, poly_int64 offset1, poly_int64 size1, /* Be conservative with non-call exceptions when the address might be NULL. */ - if (flag_non_call_exceptions && pi->pt.null) + if (cfun->can_throw_non_call_exceptions && pi->pt.null) return false; /* Check that ptr points relative to obj. */ |