diff --git a/docs/CodeGenerator.html b/docs/CodeGenerator.html
index 60f42607f07..44b835d8580 100644
--- a/docs/CodeGenerator.html
+++ b/docs/CodeGenerator.html
@@ -2469,11 +2469,14 @@ entry:
The following target-specific calling conventions are known to backend:
- - x86_StdCall — stdcall calling convention seen on Microsoft
- Windows platform (CC ID = 64).
-
- - x86_FastCall — fastcall calling convention seen on Microsoft
- Windows platform (CC ID = 65).
+- x86_StdCall — stdcall calling convention seen on Microsoft
+ Windows platform (CC ID = 64).
+- x86_FastCall — fastcall calling convention seen on Microsoft
+ Windows platform (CC ID = 65).
+- x86_ThisCall — Similar to X86_StdCall. Passes first argument
+ in ECX, others via stack. Callee is responsible for stack cleaning. This
+ convention is used by MSVC by default for methods in its ABI
+ (CC ID = 70).