mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 10:35:12 +08:00
76e7af5ffa
This patch adds tests for function and function pointer. * ld-x86-64/plt-lib.c: New file. * ld-x86-64/plt-main.out: Likewise. * ld-x86-64/plt-main1.c: Likewise. * ld-x86-64/plt-main1.rd: Likewise. * ld-x86-64/plt-main2.c: Likewise. * ld-x86-64/plt-main2.rd: Likewise. * ld-x86-64/plt-main3.c: Likewise. * ld-x86-64/plt-main3.rd: Likewise. * ld-x86-64/plt-main4.c: Likewise. * ld-x86-64/plt-main4.rd: Likewise. * ld-x86-64/plt-main5.c: Likewise. * ld-x86-64/x86-64.exp: Run plt-main tests.
16 lines
166 B
C
16 lines
166 B
C
#include <stdio.h>
|
|
|
|
extern void check_foo (void);
|
|
extern void check_bar (void);
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
check_foo ();
|
|
check_bar ();
|
|
|
|
printf ("OK\n");
|
|
|
|
return 0;
|
|
}
|