aboutsummaryrefslogtreecommitdiff
path: root/gcc/convert.c
diff options
context:
space:
mode:
authorJason Merrill <jason@redhat.com>2015-01-08 16:27:22 -0500
committerJason Merrill <jason@gcc.gnu.org>2015-01-08 16:27:22 -0500
commitf5481fc443060065cde9ed7bc6f3fd83bc1ecc4c (patch)
treecbafc576a2a3a432c0727f066088eb9aa5369156 /gcc/convert.c
parent46621807e9bf7bc94302cda27852e33a3c766112 (diff)
downloadgcc-f5481fc443060065cde9ed7bc6f3fd83bc1ecc4c.zip
gcc-f5481fc443060065cde9ed7bc6f3fd83bc1ecc4c.tar.gz
gcc-f5481fc443060065cde9ed7bc6f3fd83bc1ecc4c.tar.bz2
ubsan.c (do_ubsan_in_current_function): New.
gcc/ * ubsan.c (do_ubsan_in_current_function): New. (pass_ubsan::gate): Use it. * ubsan.h: Declare it. * convert.c (convert_to_integer): Use it. gcc/c-family/ * c-ubsan.c (ubsan_maybe_instrument_array_ref): Use do_ubsan_in_current_function. (ubsan_maybe_instrument_reference_or_call): Likewise. * c-ubsan.h: Declare it. gcc/cp/ * cp-gimplify.c (cp_genericize): Use do_ubsan_in_current_function. * decl.c (compute_array_index_type): Likewise. * init.c (build_vec_init): Likewise. * typeck.c (cp_build_binary_op): Likewise. From-SVN: r219360
Diffstat (limited to 'gcc/convert.c')
-rw-r--r--gcc/convert.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/convert.c b/gcc/convert.c
index 0491986..fc1b93c 100644
--- a/gcc/convert.c
+++ b/gcc/convert.c
@@ -885,9 +885,7 @@ convert_to_integer (tree type, tree expr)
case REAL_TYPE:
if (flag_sanitize & SANITIZE_FLOAT_CAST
- && current_function_decl != NULL_TREE
- && !lookup_attribute ("no_sanitize_undefined",
- DECL_ATTRIBUTES (current_function_decl)))
+ && do_ubsan_in_current_function ())
{
expr = save_expr (expr);
tree check = ubsan_instrument_float_cast (loc, type, expr, expr);