kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

6_4_4_1_hex_ll_unsigned_fallback.c (127B)


      1 typedef unsigned long long u64;
      2 int test_main(void) {
      3   u64 x = 0xfffffffffc000000LL;
      4   return (x & 0x04000000ULL) ? 42 : 1;
      5 }