]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit - gdb/testsuite/ChangeLog
Fix false FAIL on gdb.base/stap-probe.exp, due to ICF optimization
authorSergio Durigan Junior <sergiodj@redhat.com>
Sun, 11 Sep 2016 20:53:09 +0000 (16:53 -0400)
committerSergio Durigan Junior <sergiodj@redhat.com>
Mon, 12 Sep 2016 04:19:22 +0000 (00:19 -0400)
commit2c29df25b7c2ff006b45afd80ee6dd734ebbd47c
tree307c0bb3bd2de942c988b75a778948a73d90e9c5
parent12ec45de8ff3705f1e25e031b4502d31d4098f13
Fix false FAIL on gdb.base/stap-probe.exp, due to ICF optimization

GCC 6's ICF optimization pass is making the declaration of 'm1' and
'm2', on gdb.base/stap-probe.c, to be unified.  However, this leads to
only one instance of the probe 'two' being created, which causes a
failure on the testsuite (which expects a multi-location breakpoint to
be inserted on the probe).

This patch fixes this failure by declaring a dummy variable on 'm1',
and using it as an argument to m1's version of probe 'two'.  Since we
do not care about the contents of the functions nor about the
arguments of each probe 'two', this is OK.

gdb/testsuite/ChangeLog:
2016-09-11  Sergio Durigan Junior  <sergiodj@redhat.com>
    Jan Kratochvil  <jan.kratochvil@redhat.com>

* gdb.base/stap-probe.c (m1): New variable 'dummy', necessary to
make m1's definition to be different from m2's.  Use 'dummy' as an
argument for probe 'two'.
gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/stap-probe.c