a.c (248B)
1 /* ADR_PREL_PG_HI21 + LDST64_ABS_LO12_NC: load a const uint64_t. */ 2 #include <stdint.h> 3 static const uint64_t g = UINT64_C(0x0102030405060708); 4 int test_main(void) { 5 return *(volatile const uint64_t*)&g == UINT64_C(0x0102030405060708) ? 0 : 1; 6 }