annotate clang/test/Sema/attr-availability-tvos.c @ 222:81f6424ef0e3 llvm-original

LLVM original branch
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sun, 18 Jul 2021 22:10:01 +0900
parents 1d019706d866
children c4bab56944e8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
150
anatofuz
parents:
diff changeset
1 // RUN: %clang_cc1 "-triple" "x86_64-apple-tvos3.0" -fsyntax-only -verify %s
anatofuz
parents:
diff changeset
2
anatofuz
parents:
diff changeset
3 void f0(int) __attribute__((availability(tvos,introduced=2.0,deprecated=2.1))); // expected-note {{'f0' has been explicitly marked deprecated here}}
anatofuz
parents:
diff changeset
4 void f1(int) __attribute__((availability(tvos,introduced=2.1)));
anatofuz
parents:
diff changeset
5 void f2(int) __attribute__((availability(tvos,introduced=2.0,deprecated=3.0))); // expected-note {{'f2' has been explicitly marked deprecated here}}
anatofuz
parents:
diff changeset
6 void f3(int) __attribute__((availability(tvos,introduced=3.0)));
anatofuz
parents:
diff changeset
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}}
anatofuz
parents:
diff changeset
8
anatofuz
parents:
diff changeset
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}}
anatofuz
parents:
diff changeset
10 void f6(int) __attribute__((availability(tvos,deprecated=3.0))); // expected-note {{'f6' has been explicitly marked deprecated here}}
anatofuz
parents:
diff changeset
11 void f6(int) __attribute__((availability(tvos,introduced=2.0)));
anatofuz
parents:
diff changeset
12
anatofuz
parents:
diff changeset
13 void test() {
anatofuz
parents:
diff changeset
14 f0(0); // expected-warning{{'f0' is deprecated: first deprecated in tvOS 2.1}}
anatofuz
parents:
diff changeset
15 f1(0);
anatofuz
parents:
diff changeset
16 f2(0); // expected-warning{{'f2' is deprecated: first deprecated in tvOS 3.0}}
anatofuz
parents:
diff changeset
17 f3(0);
anatofuz
parents:
diff changeset
18 f4(0); // expected-error{{f4' is unavailable: obsoleted in tvOS 3.0}}
anatofuz
parents:
diff changeset
19 f5(0); // expected-warning{{'f5' is deprecated: first deprecated in tvOS 3.0}}
anatofuz
parents:
diff changeset
20 f6(0); // expected-warning{{'f6' is deprecated: first deprecated in tvOS 3.0}}
anatofuz
parents:
diff changeset
21 }
anatofuz
parents:
diff changeset
22
anatofuz
parents:
diff changeset
23 // Anything iOS later than 8 does not apply to tvOS.
anatofuz
parents:
diff changeset
24 void f9(int) __attribute__((availability(ios,introduced=2.0,deprecated=9.0)));
anatofuz
parents:
diff changeset
25
anatofuz
parents:
diff changeset
26 void test_transcribed_availability() {
anatofuz
parents:
diff changeset
27 f9(0);
anatofuz
parents:
diff changeset
28 }
anatofuz
parents:
diff changeset
29
anatofuz
parents:
diff changeset
30 __attribute__((availability(ios,introduced=9_0,deprecated=9_0,message="" ))) // expected-warning 2{{availability does not match previous declaration}}
anatofuz
parents:
diff changeset
31 __attribute__((availability(ios,introduced=7_0))) // expected-note 2{{previous attribute is here}}
anatofuz
parents:
diff changeset
32 void f10(int);
anatofuz
parents:
diff changeset
33
anatofuz
parents:
diff changeset
34 // Test tvOS specific attributes.
anatofuz
parents:
diff changeset
35 void f0_tvos(int) __attribute__((availability(tvos,introduced=2.0,deprecated=2.1))); // expected-note {{'f0_tvos' has been explicitly marked deprecated here}}
anatofuz
parents:
diff changeset
36 void f1_tvos(int) __attribute__((availability(tvos,introduced=2.1)));
anatofuz
parents:
diff changeset
37 void f2_tvos(int) __attribute__((availability(tvOS,introduced=2.0,deprecated=3.0))); // expected-note {{'f2_tvos' has been explicitly marked deprecated here}}
anatofuz
parents:
diff changeset
38 void f3_tvos(int) __attribute__((availability(tvos,introduced=3.0)));
anatofuz
parents:
diff changeset
39 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}}
anatofuz
parents:
diff changeset
40 void f5_tvos(int) __attribute__((availability(tvos,introduced=2.0))) __attribute__((availability(ios,deprecated=3.0)));
anatofuz
parents:
diff changeset
41 void f5_attr_reversed_tvos(int) __attribute__((availability(ios, deprecated=3.0))) __attribute__((availability(tvos,introduced=2.0)));
anatofuz
parents:
diff changeset
42 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}}
anatofuz
parents:
diff changeset
43 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}}
anatofuz
parents:
diff changeset
44 void f6_tvos(int) __attribute__((availability(tvos,deprecated=3.0))); // expected-note {{'f6_tvos' has been explicitly marked deprecated here}}
anatofuz
parents:
diff changeset
45 void f6_tvos(int) __attribute__((availability(tvOS,introduced=2.0)));
anatofuz
parents:
diff changeset
46
anatofuz
parents:
diff changeset
47 void test_tvos() {
anatofuz
parents:
diff changeset
48 f0_tvos(0); // expected-warning{{'f0_tvos' is deprecated: first deprecated in tvOS 2.1}}
anatofuz
parents:
diff changeset
49 f1_tvos(0);
anatofuz
parents:
diff changeset
50 f2_tvos(0); // expected-warning{{'f2_tvos' is deprecated: first deprecated in tvOS 3.0}}
anatofuz
parents:
diff changeset
51 f3_tvos(0);
anatofuz
parents:
diff changeset
52 f4_tvos(0); // expected-error{{'f4_tvos' is unavailable: obsoleted in tvOS 3.0}}
anatofuz
parents:
diff changeset
53 // We get no warning here because any explicit 'tvos' availability causes
anatofuz
parents:
diff changeset
54 // the ios availability to not implicitly become 'tvos' availability. Otherwise we'd get
anatofuz
parents:
diff changeset
55 // a deprecated warning.
anatofuz
parents:
diff changeset
56 f5_tvos(0); // no-warning
anatofuz
parents:
diff changeset
57 f5_attr_reversed_tvos(0); // no-warning
anatofuz
parents:
diff changeset
58 // We get a deprecated warning here because both attributes are explicitly 'tvos'.
anatofuz
parents:
diff changeset
59 f5b_tvos(0); // expected-warning {{'f5b_tvos' is deprecated: first deprecated in tvOS 3.0}}
anatofuz
parents:
diff changeset
60 // We get a deprecated warning here because both attributes are 'ios' (both get mapped to 'tvos').
anatofuz
parents:
diff changeset
61 f5c_tvos(0); // expected-warning {{'f5c_tvos' is deprecated: first deprecated in tvOS 3.0}}
anatofuz
parents:
diff changeset
62 f6_tvos(0); // expected-warning{{'f6_tvos' is deprecated: first deprecated in tvOS 3.0}}
anatofuz
parents:
diff changeset
63 }