attr_02_aligned_var.c (223B)
1 /* __attribute__((aligned(N))) on a file-scope variable. Phase 1 parses 2 * and discards the attribute; runtime alignment is not asserted. */ 3 int x __attribute__((aligned(16))); 4 5 int test_main(void) { 6 x = 0; 7 return x; 8 }