From 2c9166841eb02e80250ef48e8474a2897629b9a3 Mon Sep 17 00:00:00 2001 From: Chris Denton Date: Thu, 12 Jun 2025 23:44:02 +0000 Subject: [PATCH] Mention that `thiscall` is a 32-bit calling convention --- src/items/external-blocks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/items/external-blocks.md b/src/items/external-blocks.md index 3bed8aaf2..6dd39923e 100644 --- a/src/items/external-blocks.md +++ b/src/items/external-blocks.md @@ -150,7 +150,7 @@ r[items.extern.abi.fastcall] `__fastcall` and GCC and clang's `__attribute__((fastcall))` r[items.extern.abi.thiscall] -* `unsafe extern "thiscall"` -- The default for C++ member functions on MSVC -- corresponds to MSVC's +* `unsafe extern "thiscall"` -- The default for C++ member functions on x86\_32 MSVC -- corresponds to MSVC's `__thiscall` and GCC and clang's `__attribute__((thiscall))` r[items.extern.abi.efiapi]