forked from Imagelibrary/binutils-gdb
When running gdb.objc/objcdecode.exp we get:
...
objcdecode.m: In function '-[Decode multipleDef]':
objcdecode.m:14:3: warning: incompatible implicit declaration of built-in \
function 'printf'
printf("method multipleDef\n");
^~~~~~
objcdecode.m:14:3: note: include '<stdio.h>' or provide a declaration of \
'printf'
...
Fix this in the three gdb.objc/*.m test-cases by including stdio.h.
Tested on x86_64-linux.
gdb/testsuite/ChangeLog:
2019-07-24 Tom de Vries <tdevries@suse.de>
PR testsuite/24807
* gdb.objc/basicclass.m: Include stdio.h.
* gdb.objc/nondebug.m: Same.
* gdb.objc/objcdecode.m: Same.
40 lines
429 B
Objective-C
40 lines
429 B
Objective-C
#include <stdio.h>
|
|
#include <objc/Object.h>
|
|
|
|
@interface NonDebug: Object
|
|
{
|
|
}
|
|
@end
|
|
@interface NonDebug2: Object
|
|
{
|
|
}
|
|
@end
|
|
|
|
@implementation NonDebug
|
|
|
|
- someMethod
|
|
{
|
|
printf("method someMethod\n");
|
|
return self;
|
|
}
|
|
|
|
@end
|
|
@implementation NonDebug2
|
|
|
|
- someMethod
|
|
{
|
|
printf("method2 someMethod\n");
|
|
return self;
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
int main (int argc, const char *argv[])
|
|
{
|
|
id obj;
|
|
obj = [NonDebug new];
|
|
[obj someMethod];
|
|
return 0;
|
|
}
|