aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2016-11-25 09:51:38 +0100
committerJakub Jelinek <jakub@gcc.gnu.org>2016-11-25 09:51:38 +0100
commit758dcf83e3d6db7a7b0d7171f0adf71301a7802d (patch)
tree96bae026f7c33ca4f6a5c769d12a0709e9e6ba4a /gcc
parent83d0488b79a97fa38a46b00fbce2c72c4af91ed9 (diff)
downloadgcc-758dcf83e3d6db7a7b0d7171f0adf71301a7802d.zip
gcc-758dcf83e3d6db7a7b0d7171f0adf71301a7802d.tar.gz
gcc-758dcf83e3d6db7a7b0d7171f0adf71301a7802d.tar.bz2
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 <schwab@linux-m68k.org> From-SVN: r242864
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog7
-rw-r--r--gcc/testsuite/gcc.dg/tree-prof/comp-goto-1.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 159b14d..e710e4b 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,10 @@
+2016-11-25 Jakub Jelinek <jakub@redhat.com>
+ Andreas Schwab <schwab@linux-m68k.org>
+
+ PR gcov-profile/78467
+ * gcc.dg/tree-prof/comp-goto-1.c (insn_t): Change offset to
+ signed int.
+
2016-11-25 Richard Sandiford <richard.sandiford@arm.com>
* 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 bbfe1f4..42d61f3 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;