xref: /llvm-project/clang/test/Sema/attr-availability-tvos.c (revision e765e0bc8ed06ebb186a9905227273517f0b7240)
1 // RUN: %clang_cc1 "-triple" "x86_64-apple-tvos13.0" -fsyntax-only -verify %s
2 // RUN: %clang_cc1 "-triple" "x86_64-apple-tvos13.0" -DUSE_VERSION_MAP -isysroot %S/Inputs/AppleTVOS15.0.sdk -fsyntax-only -verify %s
3 
4 void f0(int) __attribute__((availability(tvos,introduced=12.0,deprecated=12.1))); // expected-note {{'f0' has been explicitly marked deprecated here}}
5 void f1(int) __attribute__((availability(tvos,introduced=12.1)));
6 void f2(int) __attribute__((availability(tvos,introduced=12.0,deprecated=13.0))); // expected-note {{'f2' has been explicitly marked deprecated here}}
7 void f3(int) __attribute__((availability(tvos,introduced=13.0)));
8 void f4(int) __attribute__((availability(macosx,introduced=10.1,deprecated=10.3,obsoleted=10.5), availability(tvos,introduced=12.0,deprecated=12.1,obsoleted=13.0))); // expected-note{{explicitly marked unavailable}}
9 
10 void f5(int) __attribute__((availability(tvos,introduced=12.0))) __attribute__((availability(tvos,deprecated=13.0))); // expected-note {{'f5' has been explicitly marked deprecated here}}
11 void f6(int) __attribute__((availability(tvos,deprecated=13.0))); // expected-note {{'f6' has been explicitly marked deprecated here}}
12 void f6(int) __attribute__((availability(tvos,introduced=12.0)));
13 
test(void)14 void test(void) {
15   f0(0); // expected-warning{{'f0' is deprecated: first deprecated in tvOS 12.1}}
16   f1(0);
17   f2(0); // expected-warning{{'f2' is deprecated: first deprecated in tvOS 13.0}}
18   f3(0);
19   f4(0); // expected-error{{f4' is unavailable: obsoleted in tvOS 13.0}}
20   f5(0); // expected-warning{{'f5' is deprecated: first deprecated in tvOS 13.0}}
21   f6(0); // expected-warning{{'f6' is deprecated: first deprecated in tvOS 13.0}}
22 }
23 
24 // Anything iOS later than 13 does not apply to tvOS.
25 void f9(int) __attribute__((availability(ios,introduced=12.0,deprecated=19.0)));
26 
test_transcribed_availability(void)27 void test_transcribed_availability(void) {
28   f9(0);
29 }
30 
31 __attribute__((availability(ios,introduced=19_0,deprecated=19_0,message="" ))) // expected-warning 2{{availability does not match previous declaration}}
32 __attribute__((availability(ios,introduced=17_0)))                             // expected-note 2{{previous attribute is here}}
33 void f10(int);
34 
35 // Test tvOS specific attributes.
36 void f0_tvos(int) __attribute__((availability(tvos,introduced=12.0,deprecated=12.1))); // expected-note {{'f0_tvos' has been explicitly marked deprecated here}}
37 void f1_tvos(int) __attribute__((availability(tvos,introduced=12.1)));
38 void f2_tvos(int) __attribute__((availability(tvOS,introduced=12.0,deprecated=13.0))); // expected-note {{'f2_tvos' has been explicitly marked deprecated here}}
39 void f3_tvos(int) __attribute__((availability(tvos,introduced=13.0)));
40 void f4_tvos(int) __attribute__((availability(macosx,introduced=10.1,deprecated=10.3,obsoleted=10.5), availability(tvos,introduced=12.0,deprecated=12.1,obsoleted=13.0))); // expected-note{{explicitly marked unavailable}}
41 void f5_tvos(int) __attribute__((availability(tvos,introduced=12.0))) __attribute__((availability(ios,deprecated=13.0)));
42 void f5_attr_reversed_tvos(int) __attribute__((availability(ios, deprecated=13.0))) __attribute__((availability(tvos,introduced=12.0)));
43 void f5b_tvos(int) __attribute__((availability(tvos,introduced=12.0))) __attribute__((availability(tvos,deprecated=13.0))); // expected-note {{'f5b_tvos' has been explicitly marked deprecated here}}
44 void f5c_tvos(int) __attribute__((availability(ios,introduced=12.0))) __attribute__((availability(ios,deprecated=13.0))); // expected-note {{'f5c_tvos' has been explicitly marked deprecated here}}
45 void f6_tvos(int) __attribute__((availability(tvos,deprecated=13.0))); // expected-note {{'f6_tvos' has been explicitly marked deprecated here}}
46 void f6_tvos(int) __attribute__((availability(tvOS,introduced=12.0)));
47 
test_tvos(void)48 void test_tvos(void) {
49   f0_tvos(0); // expected-warning{{'f0_tvos' is deprecated: first deprecated in tvOS 12.1}}
50   f1_tvos(0);
51   f2_tvos(0); // expected-warning{{'f2_tvos' is deprecated: first deprecated in tvOS 13.0}}
52   f3_tvos(0);
53   f4_tvos(0); // expected-error{{'f4_tvos' is unavailable: obsoleted in tvOS 13.0}}
54   // We get no warning here because any explicit 'tvos' availability causes
55   // the ios availability to not implicitly become 'tvos' availability.  Otherwise we'd get
56   // a deprecated warning.
57   f5_tvos(0); // no-warning
58   f5_attr_reversed_tvos(0); // no-warning
59   // We get a deprecated warning here because both attributes are explicitly 'tvos'.
60   f5b_tvos(0); // expected-warning {{'f5b_tvos' is deprecated: first deprecated in tvOS 13.0}}
61   // We get a deprecated warning here because both attributes are 'ios' (both get mapped to 'tvos').
62   f5c_tvos(0); // expected-warning {{'f5c_tvos' is deprecated: first deprecated in tvOS 13.0}}
63   f6_tvos(0); // expected-warning{{'f6_tvos' is deprecated: first deprecated in tvOS 13.0}}
64 }
65 
66 #ifdef USE_VERSION_MAP
67 // iOS 9.3 corresponds to tvOS 9.2, as indicated in 'SDKSettings.json'.
68 void f11(int) __attribute__((availability(ios,deprecated=9.3))); // expected-note {{'f11' has been explicitly marked deprecated here}}
69 
testWithVersionMap(void)70 void testWithVersionMap(void) {
71   f11(0); // expected-warning {{'f11' is deprecated: first deprecated in tvOS 9.2}}
72 }
73 #else
74 // Without VersionMap, tvOS version is inferred incorrectly as 9.3.
75 void f11(int) __attribute__((availability(ios,deprecated=9.3))); // expected-note {{'f11' has been explicitly marked deprecated here}}
76 
testWithoutVersionMap(void)77 void testWithoutVersionMap(void) {
78   f11(0); // expected-warning {{'f11' is deprecated: first deprecated in tvOS 9.3}}
79 }
80 #endif
81