blob: c7d65ee9ae8a08874ef32692461e60a28f3e181e [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -triple i386-apple-darwin9 -fsyntax-only -verify %s
Daniel Dunbar396b2a22009-02-16 23:37:57 +00002
3int x __attribute__((aligned(3))); // expected-error {{requested alignment is not a power of 2}}
Eli Friedmandcdafb62009-02-22 02:56:25 +00004
5// PR3254
6short g0[3] __attribute__((aligned));
7short g0_chk[__alignof__(g0) == 16 ? 1 : -1];