diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2013-08-31 01:11:41 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2013-08-31 01:11:41 +0000 |
commit | 00e99966c4574b084b5211924f97547930995a15 (patch) | |
tree | f1f7d42931d95af9208e0058d6f0c5e0ed3449d9 /clang/test/SemaOpenCL | |
parent | fb4b433bbb3f66b041585e8e7eee8ecd97a354db (diff) | |
download | bcm5719-llvm-00e99966c4574b084b5211924f97547930995a15.tar.gz bcm5719-llvm-00e99966c4574b084b5211924f97547930995a15.zip |
Consolidating the notion of a GNU attribute parameter with the attribute argument list.
llvm-svn: 189711
Diffstat (limited to 'clang/test/SemaOpenCL')
-rw-r--r-- | clang/test/SemaOpenCL/endian-attr.cl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/SemaOpenCL/endian-attr.cl b/clang/test/SemaOpenCL/endian-attr.cl index e851cdf90b3..ba2f0e5c73e 100644 --- a/clang/test/SemaOpenCL/endian-attr.cl +++ b/clang/test/SemaOpenCL/endian-attr.cl @@ -6,4 +6,4 @@ constant long b __attribute__((endian(device))) = 100; constant long c __attribute__((endian(none))) = 100; // expected-warning {{unknown endian 'none'}} -void func() __attribute__((endian(host))); // expected-warning {{endian attribute only applies to variables}} +void func() __attribute__((endian(host))); // expected-warning {{'endian' attribute only applies to variables}} |