From: Marek Polacek Date: Sat, 14 Dec 2013 12:19:56 +0000 (+0000) Subject: re PR sanitizer/59503 (Bogus integer-overflow error with long long with -m32) X-Git-Tag: releases/gcc-4.9.0~2083 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7ddf4d5acea6123be6f3040e7306b5ea2cb2d651;p=thirdparty%2Fgcc.git re PR sanitizer/59503 (Bogus integer-overflow error with long long with -m32) PR sanitizer/59503 * internal-fn.c (ubsan_expand_si_overflow_addsub_check): Call expand_binop with correct optab depending on code. testsuite/ * c-c++-common/ubsan/pr59503.c: New test. From-SVN: r205984 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fdb84d1d4234..cd64b59bf08f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2013-12-14 Marek Polacek + + PR sanitizer/59503 + * internal-fn.c (ubsan_expand_si_overflow_addsub_check): Call + expand_binop with correct optab depending on code. + 2013-12-14 Tom de Vries * calls.c (expand_call): Fix REG_PARM_STACK_SPACE comparison. diff --git a/gcc/internal-fn.c b/gcc/internal-fn.c index ad9c94752655..a0874d467b45 100644 --- a/gcc/internal-fn.c +++ b/gcc/internal-fn.c @@ -214,14 +214,14 @@ ubsan_expand_si_overflow_addsub_check (tree_code code, gimple stmt) /* Compute the operation. On RTL level, the addition is always unsigned. */ - res = expand_binop (mode, add_optab, op0, op1, - NULL_RTX, false, OPTAB_LIB_WIDEN); + res = expand_binop (mode, code == PLUS_EXPR ? add_optab : sub_optab, + op0, op1, NULL_RTX, false, OPTAB_LIB_WIDEN); /* If the op1 is negative, we have to use a different check. */ emit_cmp_and_jump_insns (op1, const0_rtx, LT, NULL_RTX, mode, false, sub_check, PROB_EVEN); - /* Compare the result of the addition with one of the operands. */ + /* Compare the result of the operation with one of the operands. */ emit_cmp_and_jump_insns (res, op0, code == PLUS_EXPR ? GE : LE, NULL_RTX, mode, false, done_label, PROB_VERY_LIKELY); diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 91dcb335bb14..b5fabb2baf1d 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2013-12-14 Marek Polacek + + PR sanitizer/59503 + * c-c++-common/ubsan/pr59503.c: New test. + 2013-12-14 Janus Weil PR fortran/59450 diff --git a/gcc/testsuite/c-c++-common/ubsan/pr59503.c b/gcc/testsuite/c-c++-common/ubsan/pr59503.c new file mode 100644 index 000000000000..eb921c4ff188 --- /dev/null +++ b/gcc/testsuite/c-c++-common/ubsan/pr59503.c @@ -0,0 +1,14 @@ +/* { dg-do run } */ +/* { dg-options "-fsanitize=signed-integer-overflow" } */ +/* { dg-skip-if "" { *-*-* } { "-flto" } { "" } } */ + +int +main (void) +{ + long long int a = 14; + long int b = 9; + asm volatile ("" : "+r" (a), "+r" (b)); + if ((a - b) != 5) + __builtin_abort (); + return 0; +}