mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-18 14:53:32 +08:00
9a2310125b
* ld-x86-64/mpx.exp (build_tests): Add libmpx2a.a, libmpx2b.a and libmpx2c.a. (run_tests): Add mpx1static, mpx2 and mpx2static. * ld-x86-64/mpx2.out: Likewise. * ld-x86-64/mpx2a.c: Likewise. * ld-x86-64/mpx2a.rd: Likewise. * ld-x86-64/mpx2b.c: Likewise. * ld-x86-64/mpx2c.c: Likewise. * ld-x86-64/mpx2c.rd: Likewise.
11 lines
105 B
C
11 lines
105 B
C
extern void foo1 (void);
|
|
extern void foo2 (void);
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
foo1 ();
|
|
foo2 ();
|
|
return 0;
|
|
}
|