blob: 00c9df594b6f0429e6ceaa5e8087a62d8fc8e54b [file] [log] [blame]
Charles Davisf0122fe2010-02-16 18:27:26 +00001// RUN: %clang_cc1 -triple i386-mingw32 -fsyntax-only -verify %s
Eli Friedman9afbfbe2011-09-30 18:53:25 +00002// RUN: %clang_cc1 -triple x86_64-mingw32 -fsyntax-only -verify %s
Anton Korobeynikov2f402702008-12-26 00:52:02 +00003
4inline void __attribute__((dllexport)) foo1(){} // expected-warning{{dllexport attribute ignored}}
5inline void __attribute__((dllimport)) foo2(){} // expected-warning{{dllimport attribute ignored}}
6
7void __attribute__((dllimport)) foo3(){} // expected-error{{dllimport attribute can be applied only to symbol declaration}}
8
9void __attribute__((dllimport, dllexport)) foo4(); // expected-warning{{dllimport attribute ignored}}
10
11void __attribute__((dllexport)) foo5();
12void __attribute__((dllimport)) foo5(); // expected-warning{{dllimport attribute ignored}}
13
John McCalld6b8de02011-01-25 03:51:08 +000014typedef int __attribute__((dllexport)) type6; // expected-warning{{'dllexport' attribute only applies to variables and functions}}
Anton Korobeynikov2f402702008-12-26 00:52:02 +000015
John McCalld6b8de02011-01-25 03:51:08 +000016typedef int __attribute__((dllimport)) type7; // expected-warning{{'dllimport' attribute only applies to variables and functions}}
Anton Korobeynikov2f402702008-12-26 00:52:02 +000017
18void __attribute__((dllimport)) foo6();
19void foo6(){} // expected-warning {{'foo6' redeclared without dllimport attribute: previous dllimport ignored}}
Charles Davisf0122fe2010-02-16 18:27:26 +000020
21// PR6269
22inline void __declspec(dllexport) foo7(){} // expected-warning{{dllexport attribute ignored}}
23inline void __declspec(dllimport) foo8(){} // expected-warning{{dllimport attribute ignored}}
24
25void __declspec(dllimport) foo9(){} // expected-error{{dllimport attribute can be applied only to symbol declaration}}
26
27void __declspec(dllimport) __declspec(dllexport) foo10(); // expected-warning{{dllimport attribute ignored}}
28
29void __declspec(dllexport) foo11();
30void __declspec(dllimport) foo11(); // expected-warning{{dllimport attribute ignored}}
31
John McCalld6b8de02011-01-25 03:51:08 +000032typedef int __declspec(dllexport) type1; // expected-warning{{'dllexport' attribute only applies to variables and functions}}
Charles Davisf0122fe2010-02-16 18:27:26 +000033
John McCalld6b8de02011-01-25 03:51:08 +000034typedef int __declspec(dllimport) type2; // expected-warning{{'dllimport' attribute only applies to variables and functions}}
Charles Davisf0122fe2010-02-16 18:27:26 +000035
36void __declspec(dllimport) foo12();
37void foo12(){} // expected-warning {{'foo12' redeclared without dllimport attribute: previous dllimport ignored}}
Rafael Espindola9b79fc92012-05-07 23:58:18 +000038
39void __attribute__((dllimport)) foo13(); // expected-warning{{dllimport attribute ignored}}
40void __attribute__((dllexport)) foo13();
Rafael Espindola98ae8342012-05-10 02:50:16 +000041
42extern int foo14 __attribute__((dllexport));
43extern int foo14 __attribute__((dllimport)); // expected-warning{{dllimport attribute ignored}}