| // RUN: %clang_cc1 -triple=x86_64-pc-unknown -fsyntax-only -verify %s |
| // Non-x86 targets ignore the calling conventions by default (but will warn |
| // when one is encountered), so we want to make sure the virtual overrides |
| virtual void __attribute__((thiscall)) f(); // expected-warning {{'thiscall' calling convention is not supported for this target}} |
| void __attribute__((cdecl)) f(); |
| void __attribute__((thiscall)) f(); // expected-warning {{'thiscall' calling convention is not supported for this target}} |
| virtual void __attribute__((stdcall)) g(); // expected-warning {{'stdcall' calling convention is not supported for this target}} |