kit

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

attr_aligned_wrong_arg.c (204B)


      1 /* aligned() expects an integer-constant-expression (AS_INT_OPT);
      2  * passing a string literal must be rejected by the parser. */
      3 int x __attribute__((aligned("oops")));
      4 
      5 int test_main(void) { return x; }