kit

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

6_6_12_cast_addr_const_static_init.c (138B)


      1 static int g = 7;
      2 struct S {
      3   void* p;
      4 };
      5 static struct S table[] = {{(void*)&g}};
      6 int test_main(void) { return *(int*)table[0].p * 6; }