about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorAmanieu d'Antras <amanieu@gmail.com>2022-02-01 18:53:45 +0100
committerAmanieu d'Antras <amanieu@gmail.com>2022-02-02 22:21:24 +0100
commit547b4e601e797e7989f6fc9ebe921376c74bd1f0 (patch)
tree35c1c18a01a0bde17cc6a20abcf635f12853e75e /src/doc
parent498eeb72f590e518e19746b346be53713689e207 (diff)
downloadrust-547b4e601e797e7989f6fc9ebe921376c74bd1f0.tar.gz
rust-547b4e601e797e7989f6fc9ebe921376c74bd1f0.zip
Add more *-unwind ABI variants
The following *-unwind ABIs are now supported:
- "C-unwind"
- "cdecl-unwind"
- "stdcall-unwind"
- "fastcall-unwind"
- "vectorcall-unwind"
- "thiscall-unwind"
- "aapcs-unwind"
- "win64-unwind"
- "sysv64-unwind"
- "system-unwind"
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/unstable-book/src/language-features/c-unwind.md17
1 files changed, 14 insertions, 3 deletions
diff --git a/src/doc/unstable-book/src/language-features/c-unwind.md b/src/doc/unstable-book/src/language-features/c-unwind.md
index 2801d9b5e77..fb32918d5e4 100644
--- a/src/doc/unstable-book/src/language-features/c-unwind.md
+++ b/src/doc/unstable-book/src/language-features/c-unwind.md
@@ -6,9 +6,20 @@ The tracking issue for this feature is: [#74990]
 
 ------------------------
 
-Introduces four new ABI strings: "C-unwind", "stdcall-unwind",
-"thiscall-unwind", and "system-unwind". These enable unwinding from other
-languages (such as C++) into Rust frames and from Rust into other languages.
+Introduces new ABI strings:
+- "C-unwind"
+- "cdecl-unwind"
+- "stdcall-unwind"
+- "fastcall-unwind"
+- "vectorcall-unwind"
+- "thiscall-unwind"
+- "aapcs-unwind"
+- "win64-unwind"
+- "sysv64-unwind"
+- "system-unwind"
+
+These enable unwinding from other languages (such as C++) into Rust frames and
+from Rust into other languages.
 
 See [RFC 2945] for more information.