mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-06 12:09:26 +08:00
13 lines
184 B
C
13 lines
184 B
C
|
#include <stdio.h>
|
||
|
#include <bfd_stdint.h>
|
||
|
|
||
|
extern uintptr_t *get_bar (void);
|
||
|
|
||
|
int
|
||
|
main ()
|
||
|
{
|
||
|
if ((uintptr_t) get_bar () == 0xffffffffffffff0ULL)
|
||
|
printf ("PASS\n");
|
||
|
return 0;
|
||
|
}
|