blob: 80f53a52fe38b1b98803885b755e367ca2176d86 [file] [log] [blame]
Jean-Daniel Dupas9a0b7052012-03-01 17:45:53 +00001// RUN: %clang_cc1 -E %s -o - | FileCheck %s
2
3// CHECK: always_inline
4#if __has_attribute(always_inline)
5int always_inline();
Jean-Daniel Dupas8a5e7fd2012-03-01 14:53:16 +00006#endif
7
Jean-Daniel Dupas9a0b7052012-03-01 17:45:53 +00008// CHECK: __always_inline__
9#if __has_attribute(__always_inline__)
10int __always_inline__();
Jean-Daniel Dupas8a5e7fd2012-03-01 14:53:16 +000011#endif
12
Jean-Daniel Dupas9a0b7052012-03-01 17:45:53 +000013// CHECK: no_dummy_attribute
14#if !__has_attribute(dummy_attribute)
15int no_dummy_attribute();
16#endif
17
18// CHECK: has_has_attribute
19#ifdef __has_attribute
20int has_has_attribute();
21#endif
22
23// CHECK: has_something_we_dont_have
24#if !__has_attribute(something_we_dont_have)
25int has_something_we_dont_have();
Jean-Daniel Dupas8a5e7fd2012-03-01 14:53:16 +000026#endif