aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-family
diff options
context:
space:
mode:
authorMarek Polacek <polacek@redhat.com>2015-09-25 11:19:11 +0000
committerMarek Polacek <mpolacek@gcc.gnu.org>2015-09-25 11:19:11 +0000
commit974348eec712f2e48e683c6e577011ac49241e0f (patch)
tree6379955efb32fbe80ad10202d9860a24ae8cfb3e /gcc/c-family
parent15dbc1a6df73343e769a8e310c1ed89829b61613 (diff)
downloadgcc-974348eec712f2e48e683c6e577011ac49241e0f.zip
gcc-974348eec712f2e48e683c6e577011ac49241e0f.tar.gz
gcc-974348eec712f2e48e683c6e577011ac49241e0f.tar.bz2
c-ubsan.c (ubsan_instrument_division): Remove unnecessary code.
* c-ubsan.c (ubsan_instrument_division): Remove unnecessary code. (ubsan_instrument_shift): Likewise. * c-c++-common/ubsan/bounds-11.c: New test. * c-c++-common/ubsan/bounds-12.c: New test. From-SVN: r228114
Diffstat (limited to 'gcc/c-family')
-rw-r--r--gcc/c-family/ChangeLog5
-rw-r--r--gcc/c-family/c-ubsan.c30
2 files changed, 7 insertions, 28 deletions
diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog
index b9feff6..32d0d25 100644
--- a/gcc/c-family/ChangeLog
+++ b/gcc/c-family/ChangeLog
@@ -1,5 +1,10 @@
2015-09-25 Marek Polacek <polacek@redhat.com>
+ * c-ubsan.c (ubsan_instrument_division): Remove unnecessary code.
+ (ubsan_instrument_shift): Likewise.
+
+2015-09-25 Marek Polacek <polacek@redhat.com>
+
PR sanitizer/64906
* c-ubsan.c (ubsan_instrument_division): Also pre-evaluate OP1.
diff --git a/gcc/c-family/c-ubsan.c b/gcc/c-family/c-ubsan.c
index d2bc264..672762c 100644
--- a/gcc/c-family/c-ubsan.c
+++ b/gcc/c-family/c-ubsan.c
@@ -89,20 +89,7 @@ ubsan_instrument_division (location_t loc, tree op0, tree op1)
return NULL_TREE;
/* In case we have a SAVE_EXPR in a conditional context, we need to
- make sure it gets evaluated before the condition. If the OP0 is
- an instrumented array reference, mark it as having side effects so
- it's not folded away. */
- if (flag_sanitize & SANITIZE_BOUNDS)
- {
- tree xop0 = op0;
- while (CONVERT_EXPR_P (xop0))
- xop0 = TREE_OPERAND (xop0, 0);
- if (TREE_CODE (xop0) == ARRAY_REF)
- {
- TREE_SIDE_EFFECTS (xop0) = 1;
- TREE_SIDE_EFFECTS (op0) = 1;
- }
- }
+ make sure it gets evaluated before the condition. */
t = fold_build2 (COMPOUND_EXPR, TREE_TYPE (t), unshare_expr (op0), t);
t = fold_build2 (COMPOUND_EXPR, TREE_TYPE (t), unshare_expr (op1), t);
if (flag_sanitize_undefined_trap_on_error)
@@ -187,20 +174,7 @@ ubsan_instrument_shift (location_t loc, enum tree_code code,
return NULL_TREE;
/* In case we have a SAVE_EXPR in a conditional context, we need to
- make sure it gets evaluated before the condition. If the OP0 is
- an instrumented array reference, mark it as having side effects so
- it's not folded away. */
- if (flag_sanitize & SANITIZE_BOUNDS)
- {
- tree xop0 = op0;
- while (CONVERT_EXPR_P (xop0))
- xop0 = TREE_OPERAND (xop0, 0);
- if (TREE_CODE (xop0) == ARRAY_REF)
- {
- TREE_SIDE_EFFECTS (xop0) = 1;
- TREE_SIDE_EFFECTS (op0) = 1;
- }
- }
+ make sure it gets evaluated before the condition. */
t = fold_build2 (COMPOUND_EXPR, TREE_TYPE (t), unshare_expr (op0), t);
t = fold_build2 (TRUTH_OR_EXPR, boolean_type_node, t,
tt ? tt : integer_zero_node);