add thiscall abi

This commit is contained in:
DrMeepster 2021-09-19 11:35:39 -07:00
parent f7e6f0445b
commit 14587da93a
1 changed files with 2 additions and 0 deletions

View File

@ -90,6 +90,8 @@ There are also some platform-specific ABI strings:
`__fastcall` and GCC and clang's `__attribute__((fastcall))`
* `extern "vectorcall"` -- The `vectorcall` ABI -- corresponds to MSVC's
`__vectorcall` and clang's `__attribute__((vectorcall))`
* `extern "thiscall"` -- The default for C++ member functions on MSVC -- corresponds to MSVC's
`__thiscall` and GCC and clang's `__attribute__((thiscall))`
* `extern "efiapi"` -- The ABI used for [UEFI] functions.
## Variadic functions