Fix clang compilation errors in gdb.mi/basics.c.
gdb/testsuite/ChangeLog: * gdb.mi/basics.c (callee3, callee2, callee1): Specify result type. (main): Ditto.
This commit is contained in:
parent
564b7600f2
commit
6649db3523
2 changed files with 9 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2014-08-25 Doug Evans <dje@google.com>
|
||||||
|
|
||||||
|
* gdb.mi/basics.c (callee3, callee2, callee1): Specify result type.
|
||||||
|
(main): Ditto.
|
||||||
|
|
||||||
2014-08-25 Doug Evans <dje@google.com>
|
2014-08-25 Doug Evans <dje@google.com>
|
||||||
|
|
||||||
* gdb.threads/thread-execl.exp: #include <stdio.h>.
|
* gdb.threads/thread-execl.exp: #include <stdio.h>.
|
||||||
|
|
|
@ -29,17 +29,17 @@ int callee4 (void)
|
||||||
C = A + B;
|
C = A + B;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
callee3 (char *strarg)
|
void callee3 (char *strarg)
|
||||||
{
|
{
|
||||||
callee4 ();
|
callee4 ();
|
||||||
}
|
}
|
||||||
|
|
||||||
callee2 (int intarg, char *strarg)
|
void callee2 (int intarg, char *strarg)
|
||||||
{
|
{
|
||||||
callee3 (strarg);
|
callee3 (strarg);
|
||||||
}
|
}
|
||||||
|
|
||||||
callee1 (int intarg, char *strarg, double fltarg)
|
void callee1 (int intarg, char *strarg, double fltarg)
|
||||||
{
|
{
|
||||||
callee2 (intarg, strarg);
|
callee2 (intarg, strarg);
|
||||||
}
|
}
|
||||||
|
@ -57,7 +57,7 @@ void do_nothing (void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
main ()
|
int main ()
|
||||||
{
|
{
|
||||||
callee1 (2, "A string argument.", 3.5);
|
callee1 (2, "A string argument.", 3.5);
|
||||||
callee1 (2, "A string argument.", 3.5);
|
callee1 (2, "A string argument.", 3.5);
|
||||||
|
|
Loading…
Reference in a new issue