diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-01-29 01:38:41 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-01-29 01:38:41 +0000 |
commit | cda7968b38d76848b4fb24f7cc28ab83835b4ea3 (patch) | |
tree | 744f269ce4546de2c9db60d9439a0428a1b79c6b /test | |
parent | f727e1c6cc382c1b5fe23b38ba04df2d4a2f358a (diff) |
Actually remove the hack which was blocking the Borland-style attributes from
working, and add the missing attribute spellings. This brings _pascal,
_fastcall, _stdcall and _cdecl to life in -fborland-extensions mode.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173749 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/SemaCXX/borland-extensions.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/SemaCXX/borland-extensions.cpp b/test/SemaCXX/borland-extensions.cpp index f9414f8869..d214473031 100644 --- a/test/SemaCXX/borland-extensions.cpp +++ b/test/SemaCXX/borland-extensions.cpp @@ -7,6 +7,7 @@ int dummy_function() { return 0; } // 2. test __pascal +// expected-warning@+1 {{calling convention '_pascal' ignored for this target}} int _pascal f2(); // expected-warning@+1 {{calling convention '__pascal' ignored for this target}} @@ -33,7 +34,9 @@ void m2() { // 3. test other calling conventions int _cdecl fa3(); +// expected-warning@+1 {{calling convention '_fastcall' ignored for this target}} int _fastcall fc3(); +// expected-warning@+1 {{calling convention '_stdcall' ignored for this target}} int _stdcall fd3(); // 4. test __uuidof() |