annotate clang/test/Sema/attr-long-call.c @ 207:2e18cbf3894f

LLVM12
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 08 Jun 2021 06:07:14 +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 mips-linux-gnu -fsyntax-only -verify %s
anatofuz
parents:
diff changeset
2 // RUN: %clang_cc1 -triple mips64-linux-gnu -fsyntax-only -verify %s
anatofuz
parents:
diff changeset
3
anatofuz
parents:
diff changeset
4 __attribute__((long_call(0))) void foo1(); // expected-error {{'long_call' attribute takes no arguments}}
anatofuz
parents:
diff changeset
5 __attribute__((short_call(0))) void foo9(); // expected-error {{'short_call' attribute takes no arguments}}
anatofuz
parents:
diff changeset
6 __attribute__((far(0))) void foo2(); // expected-error {{'far' attribute takes no arguments}}
anatofuz
parents:
diff changeset
7 __attribute__((near(0))) void foo3(); // expected-error {{'near' attribute takes no arguments}}
anatofuz
parents:
diff changeset
8
anatofuz
parents:
diff changeset
9 __attribute((long_call)) int a; // expected-warning {{attribute only applies to functions}}
anatofuz
parents:
diff changeset
10 __attribute((short_call)) int d; // expected-warning {{attribute only applies to functions}}
anatofuz
parents:
diff changeset
11 __attribute((far)) int a; // expected-warning {{attribute only applies to functions}}
anatofuz
parents:
diff changeset
12 __attribute((near)) int a; // expected-warning {{attribute only applies to functions}}
anatofuz
parents:
diff changeset
13
anatofuz
parents:
diff changeset
14 __attribute((long_call)) void foo4();
anatofuz
parents:
diff changeset
15 __attribute((short_call)) void foo10();
anatofuz
parents:
diff changeset
16 __attribute((far)) void foo5();
anatofuz
parents:
diff changeset
17 __attribute((near)) void foo6();
anatofuz
parents:
diff changeset
18
anatofuz
parents:
diff changeset
19 __attribute((long_call, far)) void foo7();
anatofuz
parents:
diff changeset
20 __attribute((short_call, near)) void foo11();
anatofuz
parents:
diff changeset
21
anatofuz
parents:
diff changeset
22 __attribute((far, near)) void foo8(); // expected-error {{'near' and 'far' attributes are not compatible}} \
anatofuz
parents:
diff changeset
23 // expected-note {{conflicting attribute is here}}
anatofuz
parents:
diff changeset
24
anatofuz
parents:
diff changeset
25 __attribute((short_call, long_call)) void foo12(); // expected-error {{'long_call' and 'short_call' attributes are not compatible}} \
anatofuz
parents:
diff changeset
26 // expected-note {{conflicting attribute is here}}