kit

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

i128_12_global_init.c (169B)


      1 typedef unsigned __int128 u128;
      2 
      3 static u128 g = ((u128)7 << 64) | 61;
      4 
      5 int test_main(void) {
      6   if ((unsigned long long)(g >> 64) != 7ULL) return 11;
      7   return (int)g;
      8 }