about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorBenedikt Radtke <benediktradtke@gmail.com>2023-08-06 23:20:53 +0200
committerBenedikt Radtke <benediktradtke@gmail.com>2023-08-07 14:11:03 +0200
commit3f3262e592c51b0f39925a7a716d29b7a8e37ff4 (patch)
tree9e1a6a0de3fc02f9b388327701bdba294811279d /src/doc
parent85fbb571497d13cfb828de9b0d3e78656b9203c1 (diff)
stabilize abi_thiscall
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/unstable-book/src/language-features/abi-thiscall.md12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/doc/unstable-book/src/language-features/abi-thiscall.md b/src/doc/unstable-book/src/language-features/abi-thiscall.md
deleted file mode 100644
index 73bc6eacf42..00000000000
--- a/src/doc/unstable-book/src/language-features/abi-thiscall.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# `abi_thiscall`
-
-The tracking issue for this feature is: [#42202]
-
-[#42202]: https://github.com/rust-lang/rust/issues/42202
-
-------------------------
-
-The MSVC ABI on x86 Windows uses the `thiscall` calling convention for C++
-instance methods by default; it is identical to the usual (C) calling
-convention on x86 Windows except that the first parameter of the method,
-the `this` pointer, is passed in the ECX register.