From: Jakub Jelinek Date: Fri, 25 Nov 2016 08:51:38 +0000 (+0100) Subject: re PR gcov-profile/78467 (gcc.dg/tree-prof/comp-goto-1.c FAILs) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=758dcf83e3d6db7a7b0d7171f0adf71301a7802d;p=gcc.git re PR gcov-profile/78467 (gcc.dg/tree-prof/comp-goto-1.c FAILs) PR gcov-profile/78467 * gcc.dg/tree-prof/comp-goto-1.c (insn_t): Change offset to signed int. Co-Authored-By: Andreas Schwab From-SVN: r242864 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 159b14d9670..e710e4b7c1d 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,10 @@ +2016-11-25 Jakub Jelinek + Andreas Schwab + + PR gcov-profile/78467 + * gcc.dg/tree-prof/comp-goto-1.c (insn_t): Change offset to + signed int. + 2016-11-25 Richard Sandiford * gcc.dg/tree-ssa/tailcall-7-run.c: New test. diff --git a/gcc/testsuite/gcc.dg/tree-prof/comp-goto-1.c b/gcc/testsuite/gcc.dg/tree-prof/comp-goto-1.c index bbfe1f4728f..42d61f3cad6 100644 --- a/gcc/testsuite/gcc.dg/tree-prof/comp-goto-1.c +++ b/gcc/testsuite/gcc.dg/tree-prof/comp-goto-1.c @@ -16,7 +16,7 @@ typedef union { struct { - unsigned int offset:18; + signed int offset:18; unsigned int ignore:4; unsigned int s1:8; int :2;