blob: b940a9ad3a998a017ea2b2f1ad6664b20b838505 [file] [log] [blame]
Tim Northover7a73cc72015-10-30 16:30:49 +00001// RUN: %clang_cc1 "-triple" "x86_64-apple-tvos3.0" -fsyntax-only -verify %s
2
3void f0(int) __attribute__((availability(tvos,introduced=2.0,deprecated=2.1))); // expected-note {{'f0' has been explicitly marked deprecated here}}
4void f1(int) __attribute__((availability(tvos,introduced=2.1)));
5void f2(int) __attribute__((availability(tvos,introduced=2.0,deprecated=3.0))); // expected-note {{'f2' has been explicitly marked deprecated here}}
6void f3(int) __attribute__((availability(tvos,introduced=3.0)));
7void 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
9void f5(int) __attribute__((availability(tvos,introduced=2.0))) __attribute__((availability(tvos,deprecated=3.0))); // expected-note {{'f5' has been explicitly marked deprecated here}}
Michael Kruse4c99f5f2018-09-24 06:31:37 +000010void f6(int) __attribute__((availability(tvos,deprecated=3.0))); // expected-note {{'f6' has been explicitly marked deprecated here}}
11void f6(int) __attribute__((availability(tvos,introduced=2.0)));
Tim Northover7a73cc72015-10-30 16:30:49 +000012
13void 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}
Tim Northover935d79b2015-11-02 21:14:48 +000022
23// Anything iOS later than 8 does not apply to tvOS.
24void f9(int) __attribute__((availability(ios,introduced=2.0,deprecated=9.0)));
25
26void test_transcribed_availability() {
27 f9(0);
28}
29
Michael Krusedc5ce722018-08-03 01:21:16 +000030__attribute__((availability(ios,introduced=9_0,deprecated=9_0,message="" ))) // expected-warning 2{{availability does not match previous declaration}}
31__attribute__((availability(ios,introduced=7_0))) // expected-note 2{{previous attribute is here}}
Manman Ren719a8642016-05-06 21:04:01 +000032void f10(int);
33
Tim Northover935d79b2015-11-02 21:14:48 +000034// Test tvOS specific attributes.
35void f0_tvos(int) __attribute__((availability(tvos,introduced=2.0,deprecated=2.1))); // expected-note {{'f0_tvos' has been explicitly marked deprecated here}}
36void f1_tvos(int) __attribute__((availability(tvos,introduced=2.1)));
Alex Lorenz0b1ce8b2017-08-15 14:42:01 +000037void f2_tvos(int) __attribute__((availability(tvOS,introduced=2.0,deprecated=3.0))); // expected-note {{'f2_tvos' has been explicitly marked deprecated here}}
Tim Northover935d79b2015-11-02 21:14:48 +000038void f3_tvos(int) __attribute__((availability(tvos,introduced=3.0)));
39void 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}}
40void f5_tvos(int) __attribute__((availability(tvos,introduced=2.0))) __attribute__((availability(ios,deprecated=3.0)));
41void f5_attr_reversed_tvos(int) __attribute__((availability(ios, deprecated=3.0))) __attribute__((availability(tvos,introduced=2.0)));
42void 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}}
43void 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}}
Michael Kruse4c99f5f2018-09-24 06:31:37 +000044void f6_tvos(int) __attribute__((availability(tvos,deprecated=3.0))); // expected-note {{'f6_tvos' has been explicitly marked deprecated here}}
45void f6_tvos(int) __attribute__((availability(tvOS,introduced=2.0)));
Tim Northover935d79b2015-11-02 21:14:48 +000046
47void test_tvos() {
48 f0_tvos(0); // expected-warning{{'f0_tvos' is deprecated: first deprecated in tvOS 2.1}}
49 f1_tvos(0);
50 f2_tvos(0); // expected-warning{{'f2_tvos' is deprecated: first deprecated in tvOS 3.0}}
51 f3_tvos(0);
52 f4_tvos(0); // expected-error{{'f4_tvos' is unavailable: obsoleted in tvOS 3.0}}
53 // We get no warning here because any explicit 'tvos' availability causes
Alexander Kornienko2a8c18d2018-04-06 15:14:32 +000054 // the ios availability to not implicitly become 'tvos' availability. Otherwise we'd get
Tim Northover935d79b2015-11-02 21:14:48 +000055 // a deprecated warning.
56 f5_tvos(0); // no-warning
57 f5_attr_reversed_tvos(0); // no-warning
58 // We get a deprecated warning here because both attributes are explicitly 'tvos'.
59 f5b_tvos(0); // expected-warning {{'f5b_tvos' is deprecated: first deprecated in tvOS 3.0}}
60 // We get a deprecated warning here because both attributes are 'ios' (both get mapped to 'tvos').
61 f5c_tvos(0); // expected-warning {{'f5c_tvos' is deprecated: first deprecated in tvOS 3.0}}
62 f6_tvos(0); // expected-warning{{'f6_tvos' is deprecated: first deprecated in tvOS 3.0}}
63}