2015-10-29 Richard Biener <rguenther@suse.de>
authorrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 29 Oct 2015 08:21:50 +0000 (08:21 +0000)
committerrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 29 Oct 2015 08:21:50 +0000 (08:21 +0000)
PR middle-end/56956
* fold-const.c (fold_cond_expr_with_comparison): Do not fold
unsigned conditonal negation to ABS_EXPR.

* c-c++-common/ubsan/pr56956.c: New testcase.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@229517 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/fold-const.c
gcc/testsuite/ChangeLog
gcc/testsuite/c-c++-common/ubsan/pr56956.c [new file with mode: 0644]

index 9dfd434..72d61ad 100644 (file)
@@ -1,5 +1,11 @@
 2015-10-29  Richard Biener  <rguenther@suse.de>
 
+       PR middle-end/56956
+       * fold-const.c (fold_cond_expr_with_comparison): Do not fold
+       unsigned conditonal negation to ABS_EXPR.
+
+2015-10-29  Richard Biener  <rguenther@suse.de>
+
        * gimple-match-head.c (gimple_simplify): Remove premature checking
        of builtin_decl_implicit of function calls we simplify.
 
index 71d72f1..d88bffc 100644 (file)
@@ -4963,8 +4963,7 @@ fold_cond_expr_with_comparison (location_t loc, tree type,
       case GE_EXPR:
       case GT_EXPR:
        if (TYPE_UNSIGNED (TREE_TYPE (arg1)))
-         arg1 = fold_convert_loc (loc, signed_type_for
-                              (TREE_TYPE (arg1)), arg1);
+         break;
        tem = fold_build1_loc (loc, ABS_EXPR, TREE_TYPE (arg1), arg1);
        return pedantic_non_lvalue_loc (loc, fold_convert_loc (loc, type, tem));
       case UNLE_EXPR:
@@ -4974,8 +4973,7 @@ fold_cond_expr_with_comparison (location_t loc, tree type,
       case LE_EXPR:
       case LT_EXPR:
        if (TYPE_UNSIGNED (TREE_TYPE (arg1)))
-         arg1 = fold_convert_loc (loc, signed_type_for
-                              (TREE_TYPE (arg1)), arg1);
+         break;
        tem = fold_build1_loc (loc, ABS_EXPR, TREE_TYPE (arg1), arg1);
        return negate_expr (fold_convert_loc (loc, type, tem));
       default:
index 43f6007..8c3f4ad 100644 (file)
@@ -1,3 +1,8 @@
+2015-10-29  Richard Biener  <rguenther@suse.de>
+
+       PR middle-end/56956
+       * c-c++-common/ubsan/pr56956.c: New testcase.
+
 2015-10-28  Eric Botcazou  <ebotcazou@adacore.com>
 
        * gnat.dg/discr44.adb: New test.
diff --git a/gcc/testsuite/c-c++-common/ubsan/pr56956.c b/gcc/testsuite/c-c++-common/ubsan/pr56956.c
new file mode 100644 (file)
index 0000000..996e1dd
--- /dev/null
@@ -0,0 +1,15 @@
+/* { dg-do run } */
+/* { dg-options "-fsanitize=undefined -fsanitize-undefined-trap-on-error" } */
+
+unsigned int __attribute__((noinline,noclone))
+foo (unsigned int x)
+{
+  return x <= __INT_MAX__ ? x : -x;
+}
+
+int
+main ()
+{
+  volatile unsigned int tem = foo (-__INT_MAX__ - 1);
+  return 0;
+}