Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Win64: Silently ignore __stdcall, __fastcall, and __thiscall | Reid Kleckner | 2015-02-26 | 1 | -4/+9 |
| | | | | | | | | | | MSVC doesn't warn on this. Users are expected to apply the WINAPI macro to functions passed by pointer to the Win32 API, and this macro expands to __stdcall. This means we end up with a lot of useless noisy warnings about ignored calling conventions when compiling code with clang for Win64. llvm-svn: 230668 | ||||
* | Allowing individual targets to determine whether a given calling convention ↵ | Aaron Ballman | 2012-10-02 | 1 | -0/+8 |
is allowed or ignored with warning. This allows for correct name mangling for x64 targets on Windows, which in turn allows for linking against the Win32 APIs. Fixes PR13782 llvm-svn: 165015 |