1 // RUN: %clang_cc1 "-triple" "x86_64-apple-tvos3.0" -fsyntax-only -verify %s 2 3 void f0(int) __attribute__((availability(tvos,introduced=2.0,deprecated=2.1))); // expected-note {{'f0' has been explicitly marked deprecated here}} 4 void f1(int) __attribute__((availability(tvos,introduced=2.1))); 5 void f2(int) __attribute__((availability(tvos,introduced=2.0,deprecated=3.0))); // expected-note {{'f2' has been explicitly marked deprecated here}} 6 void f3(int) __attribute__((availability(tvos,introduced=3.0))); 7 void f4(int) __attribute__((availability(macosx,introduced=10.1,deprecated=10.3,obsoleted=10.5), availability(tvos,introduced=2.0,deprecated=2.1,obsoleted=3.0))); // expected-note{{explicitly marked unavailable}} 8 9 void f5(int) __attribute__((availability(tvos,introduced=2.0))) __attribute__((availability(tvos,deprecated=3.0))); // expected-note {{'f5' has been explicitly marked deprecated here}} 10 void f6(int) __attribute__((availability(tvos,deprecated=3.0))); 11 void f6(int) __attribute__((availability(tvos,introduced=2.0))); // expected-note {{'f6' has been explicitly marked deprecated here}} 12 13 void test() { 14 f0(0); // expected-warning{{'f0' is deprecated: first deprecated in tvOS 2.1}} 15 f1(0); 16 f2(0); // expected-warning{{'f2' is deprecated: first deprecated in tvOS 3.0}} 17 f3(0); 18 f4(0); // expected-error{{f4' is unavailable: obsoleted in tvOS 3.0}} 19 f5(0); // expected-warning{{'f5' is deprecated: first deprecated in tvOS 3.0}} 20 f6(0); // expected-warning{{'f6' is deprecated: first deprecated in tvOS 3.0}} 21 } 22 23 // Anything iOS later than 8 does not apply to tvOS. 24 void f9(int) __attribute__((availability(ios,introduced=2.0,deprecated=9.0))); 25 26 void test_transcribed_availability() { 27 f9(0); 28 } 29 30 // Test tvOS specific attributes. 31 void f0_tvos(int) __attribute__((availability(tvos,introduced=2.0,deprecated=2.1))); // expected-note {{'f0_tvos' has been explicitly marked deprecated here}} 32 void f1_tvos(int) __attribute__((availability(tvos,introduced=2.1))); 33 void f2_tvos(int) __attribute__((availability(tvos,introduced=2.0,deprecated=3.0))); // expected-note {{'f2_tvos' has been explicitly marked deprecated here}} 34 void f3_tvos(int) __attribute__((availability(tvos,introduced=3.0))); 35 void f4_tvos(int) __attribute__((availability(macosx,introduced=10.1,deprecated=10.3,obsoleted=10.5), availability(tvos,introduced=2.0,deprecated=2.1,obsoleted=3.0))); // expected-note{{explicitly marked unavailable}} 36 void f5_tvos(int) __attribute__((availability(tvos,introduced=2.0))) __attribute__((availability(ios,deprecated=3.0))); 37 void f5_attr_reversed_tvos(int) __attribute__((availability(ios, deprecated=3.0))) __attribute__((availability(tvos,introduced=2.0))); 38 void f5b_tvos(int) __attribute__((availability(tvos,introduced=2.0))) __attribute__((availability(tvos,deprecated=3.0))); // expected-note {{'f5b_tvos' has been explicitly marked deprecated here}} 39 void f5c_tvos(int) __attribute__((availability(ios,introduced=2.0))) __attribute__((availability(ios,deprecated=3.0))); // expected-note {{'f5c_tvos' has been explicitly marked deprecated here}} 40 void f6_tvos(int) __attribute__((availability(tvos,deprecated=3.0))); 41 void f6_tvos(int) __attribute__((availability(tvos,introduced=2.0))); // expected-note {{'f6_tvos' has been explicitly marked deprecated here}} 42 43 void test_tvos() { 44 f0_tvos(0); // expected-warning{{'f0_tvos' is deprecated: first deprecated in tvOS 2.1}} 45 f1_tvos(0); 46 f2_tvos(0); // expected-warning{{'f2_tvos' is deprecated: first deprecated in tvOS 3.0}} 47 f3_tvos(0); 48 f4_tvos(0); // expected-error{{'f4_tvos' is unavailable: obsoleted in tvOS 3.0}} 49 // We get no warning here because any explicit 'tvos' availability causes 50 // the ios availablity to not implicitly become 'tvos' availability. Otherwise we'd get 51 // a deprecated warning. 52 f5_tvos(0); // no-warning 53 f5_attr_reversed_tvos(0); // no-warning 54 // We get a deprecated warning here because both attributes are explicitly 'tvos'. 55 f5b_tvos(0); // expected-warning {{'f5b_tvos' is deprecated: first deprecated in tvOS 3.0}} 56 // We get a deprecated warning here because both attributes are 'ios' (both get mapped to 'tvos'). 57 f5c_tvos(0); // expected-warning {{'f5c_tvos' is deprecated: first deprecated in tvOS 3.0}} 58 f6_tvos(0); // expected-warning{{'f6_tvos' is deprecated: first deprecated in tvOS 3.0}} 59 } 60