about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorAmanieu d'Antras <amanieu@gmail.com>2019-10-21 02:46:04 +0100
committerAmanieu d'Antras <amanieu@gmail.com>2019-11-03 14:03:21 +0000
commit5f1a0afd22c7f1e26782467503d32d026c55fc0c (patch)
tree7e7fc14e9dadb4770e40294ec56cdc54642e7db4 /src/doc
parent9a8bb3a26e8a058be64a0d778b3b168bc9b74caa (diff)
downloadrust-5f1a0afd22c7f1e26782467503d32d026c55fc0c.tar.gz
rust-5f1a0afd22c7f1e26782467503d32d026c55fc0c.zip
Allow foreign exceptions to unwind through Rust code
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/unstable-book/src/language-features/lang-items.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/doc/unstable-book/src/language-features/lang-items.md b/src/doc/unstable-book/src/language-features/lang-items.md
index 3ee024c6b58..60fdc6c7b69 100644
--- a/src/doc/unstable-book/src/language-features/lang-items.md
+++ b/src/doc/unstable-book/src/language-features/lang-items.md
@@ -249,9 +249,8 @@ the source code.
 - Runtime
   - `start`: `libstd/rt.rs`
   - `eh_personality`: `libpanic_unwind/emcc.rs` (EMCC)
-  - `eh_personality`: `libpanic_unwind/seh64_gnu.rs` (SEH64 GNU)
+  - `eh_personality`: `libpanic_unwind/gcc.rs` (GNU)
   - `eh_personality`: `libpanic_unwind/seh.rs` (SEH)
-  - `eh_unwind_resume`: `libpanic_unwind/seh64_gnu.rs` (SEH64 GNU)
   - `eh_unwind_resume`: `libpanic_unwind/gcc.rs` (GCC)
   - `msvc_try_filter`: `libpanic_unwind/seh.rs` (SEH)
   - `panic`: `libcore/panicking.rs`