blob: b8e7ade4c6daf747240bee63d7cb75318c62b835 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <stdio.h>
#include <stdint.h>
extern uintptr_t *get_bar (void);
int
main ()
{
if ((uintptr_t) get_bar () == 0xffffffffffffff0ULL)
printf ("PASS\n");
return 0;
}
|