kit

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

attr_p2_aligned_not_pow2.c (143B)


      1 /* Phase 2: aligned(N) requires N to be a power of two. 3 is invalid. */
      2 int x __attribute__((aligned(3)));
      3 
      4 int test_main(void) { return x; }