blob: ba2f0e5c73e42d7412816a6e920b4f6ef1363c75 [file] [log] [blame]
Joey Gouly0608ae82013-03-14 09:54:43 +00001// RUN: %clang_cc1 -verify %s
2
3constant long a __attribute__((endian(host))) = 100;
4
5constant long b __attribute__((endian(device))) = 100;
6
7constant long c __attribute__((endian(none))) = 100; // expected-warning {{unknown endian 'none'}}
8
Aaron Ballman00e99962013-08-31 01:11:41 +00009void func() __attribute__((endian(host))); // expected-warning {{'endian' attribute only applies to variables}}