mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-27 04:52:05 +08:00
b218a83935
gold/ PR gold/pr23870 * testsuite/aarch64_pr23870_bar.c: Return a magic value. * testsuite/aarch64_pr23870_foo.c: Check the magic value and return success or failure.
7 lines
92 B
C
7 lines
92 B
C
int foo (int (*bar)(void));
|
|
|
|
int foo (int (*bar)(void))
|
|
{
|
|
return bar() == 0x55 ? 0 : 1;
|
|
}
|