blob: d214473031e01468b7e6d2682c063cd05efa73ca [file] [log] [blame]
Richard Smith5cd532c2013-01-29 01:24:26 +00001// RUN: %clang_cc1 %s -fsyntax-only -fborland-extensions -triple x86_64-linux-gnu -verify
2// RUN: %clang_cc1 %s -fsyntax-only -fborland-extensions -triple i686-linux-gnu -Werror
Dawn Perchik400b6072010-09-02 23:59:25 +00003
4// Borland extensions
5
6// 1. test -fborland-extensions
7int dummy_function() { return 0; }
Dawn Perchik52fc3142010-09-03 01:29:35 +00008
9// 2. test __pascal
Richard Smithcda79682013-01-29 01:38:41 +000010// expected-warning@+1 {{calling convention '_pascal' ignored for this target}}
Dawn Perchik52fc3142010-09-03 01:29:35 +000011int _pascal f2();
12
Richard Smith5cd532c2013-01-29 01:24:26 +000013// expected-warning@+1 {{calling convention '__pascal' ignored for this target}}
Dawn Perchik52fc3142010-09-03 01:29:35 +000014float __pascal gi2(int, int);
Richard Smith5cd532c2013-01-29 01:24:26 +000015// expected-warning@+1 {{calling convention '__pascal' ignored for this target}}
Dawn Perchik52fc3142010-09-03 01:29:35 +000016template<typename T> T g2(T (__pascal * const )(int, int)) { return 0; }
17
18struct M {
Richard Smith5cd532c2013-01-29 01:24:26 +000019 // expected-warning@+1 {{calling convention '__pascal' ignored for this target}}
Dawn Perchik52fc3142010-09-03 01:29:35 +000020 int __pascal addP();
Richard Smith5cd532c2013-01-29 01:24:26 +000021 // expected-warning@+1 {{calling convention '__pascal' ignored for this target}}
Dawn Perchik52fc3142010-09-03 01:29:35 +000022 float __pascal subtractP();
23};
Richard Smith5cd532c2013-01-29 01:24:26 +000024// expected-warning@+1 {{calling convention '__pascal' ignored for this target}}
Dawn Perchik52fc3142010-09-03 01:29:35 +000025template<typename T> int h2(T (__pascal M::* const )()) { return 0; }
26void m2() {
27 int i; float f;
28 i = f2();
29 f = gi2(2, i);
30 f = g2(gi2);
31 i = h2<int>(&M::addP);
32 f = h2(&M::subtractP);
33}
Dawn Perchik8df76222010-09-08 22:56:24 +000034
35// 3. test other calling conventions
36int _cdecl fa3();
Richard Smithcda79682013-01-29 01:38:41 +000037// expected-warning@+1 {{calling convention '_fastcall' ignored for this target}}
Dawn Perchik8df76222010-09-08 22:56:24 +000038int _fastcall fc3();
Richard Smithcda79682013-01-29 01:38:41 +000039// expected-warning@+1 {{calling convention '_stdcall' ignored for this target}}
Dawn Perchik8df76222010-09-08 22:56:24 +000040int _stdcall fd3();
41
42// 4. test __uuidof()
43typedef struct _GUID {
44 unsigned long Data1;
45 unsigned short Data2;
46 unsigned short Data3;
47 unsigned char Data4[ 8 ];
48} GUID;
49
50struct __declspec(uuid("{12345678-1234-1234-1234-123456789abc}")) Foo;
51struct Data {
52 GUID const* Guid;
53};
54
55void t4() {
56 unsigned long data;
57
58 const GUID guid_inl = __uuidof(Foo);
59 Data ata1 = { &guid_inl};
60 data = ata1.Guid->Data1;
61}
62