From e26b7e41652e288dfdb4c48121bba470c4774150 Mon Sep 17 00:00:00 2001 From: Markus Metzger Date: Wed, 13 Apr 2016 14:06:51 +0200 Subject: btrace: fix test build error in gdb.btrace/instruction_history.c On systems with a newer version of GCC the gdb.btrace/instruction_history.exp test fails to build like this: Running .../gdb.btrace/instruction_history.exp ... gdb compile failed, .../gdb.btrace/instruction_history.c: In function 'main': .../gdb.btrace/instruction_history.c:24:3: warning: implicit declaration of function 'loop' [-Wimplicit-function-declaration] loop (); ^ Declare loop to fix it. testsuite/ * gdb.btrace/instruction_history.c (loop): Add declaration. --- gdb/testsuite/ChangeLog | 4 ++++ gdb/testsuite/gdb.btrace/instruction_history.c | 2 ++ 2 files changed, 6 insertions(+) diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index d3d400b0de1..e7a0f3f7bb2 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2016-04-13 Markus Metzger + + * gdb.btrace/instruction_history.c (loop): Add declaration. + 2016-04-12 Antoine Tremblay * gdb.trace/ftrace.exp (proc): Change test prefix from "ond" to "cond". diff --git a/gdb/testsuite/gdb.btrace/instruction_history.c b/gdb/testsuite/gdb.btrace/instruction_history.c index bf8f60e6904..8178535ffeb 100644 --- a/gdb/testsuite/gdb.btrace/instruction_history.c +++ b/gdb/testsuite/gdb.btrace/instruction_history.c @@ -17,6 +17,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ +extern void loop (void); + int main (void) { -- cgit v1.2.1