From f85e08c0af4d4644e4cf81fab65a2648e9431990 Mon Sep 17 00:00:00 2001 From: Matt Gardner Date: Tue, 27 Jun 2023 16:01:05 -0700 Subject: [PATCH] Update x64-calling-convention.md Add link to `__vectorcall` documentation --- docs/build/x64-calling-convention.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/build/x64-calling-convention.md b/docs/build/x64-calling-convention.md index c03fee57e91..d4fed57b86c 100644 --- a/docs/build/x64-calling-convention.md +++ b/docs/build/x64-calling-convention.md @@ -7,6 +7,8 @@ ms.date: 05/17/2022 This section describes the standard processes and conventions that one function (the caller) uses to make calls into another function (the callee) in x64 code. +For more information on the `__vectorcall` calling convention, see [__vectorcall](../cpp/vectorcall.md). + ## Calling convention defaults The x64 Application Binary Interface (ABI) uses a four-register fast-call calling convention by default. Space is allocated on the call stack as a shadow store for callees to save those registers.