kit

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

attr_11_attr_on_pointer.c (160B)


      1 /* Attribute attached to a pointer layer inside a declarator. */
      2 int* __attribute__((aligned(8))) p;
      3 
      4 int test_main(void) {
      5   p = 0;
      6   return p == 0 ? 0 : 1;
      7 }