2010-04-09 11:41:43 +02:00
|
|
|
/* This testcase is part of GDB, the GNU debugger.
|
|
|
|
|
2020-01-01 07:20:01 +01:00
|
|
|
Copyright 2010-2020 Free Software Foundation, Inc.
|
2010-04-09 11:41:43 +02:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2013-06-07 16:39:33 +02:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
2010-04-09 11:41:43 +02:00
|
|
|
|
2019-12-09 22:28:39 +01:00
|
|
|
#ifdef USE_PROBES
|
|
|
|
#include <sys/sdt.h>
|
|
|
|
#endif
|
|
|
|
|
2010-04-12 11:49:35 +02:00
|
|
|
int result = 0;
|
2010-04-09 11:41:43 +02:00
|
|
|
|
2017-12-13 17:37:09 +01:00
|
|
|
namespace foo_ns
|
|
|
|
{
|
|
|
|
int multiply (int i)
|
|
|
|
{
|
|
|
|
return i * i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-09 11:41:43 +02:00
|
|
|
int multiply (int i)
|
|
|
|
{
|
|
|
|
return i * i;
|
|
|
|
}
|
|
|
|
|
|
|
|
int add (int i)
|
|
|
|
{
|
2017-12-07 17:47:33 +01:00
|
|
|
return i + i; /* Break at function add. */
|
2010-04-09 11:41:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int main (int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int foo = 5;
|
|
|
|
int bar = 42;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < 10; i++)
|
|
|
|
{
|
|
|
|
result += multiply (foo); /* Break at multiply. */
|
|
|
|
result += add (bar); /* Break at add. */
|
2019-12-09 22:28:39 +01:00
|
|
|
#ifdef USE_PROBES
|
|
|
|
DTRACE_PROBE1 (test, result_updated, result);
|
|
|
|
#endif
|
2010-04-09 11:41:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0; /* Break at end. */
|
|
|
|
}
|