blob: e851cdf90b3b19edc43318c612d42092d727a32b [file] [log] [blame]
Joey Gouly96cead52013-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
9void func() __attribute__((endian(host))); // expected-warning {{endian attribute only applies to variables}}