about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYuki Okushi <huyuumi.dev@gmail.com>2020-01-25 07:45:11 +0900
committerGitHub <noreply@github.com>2020-01-25 07:45:11 +0900
commitb9c29770cc1565b44932763d37f385734c6bc8a0 (patch)
tree78b28d2638bc62ae95432d250557491a49ff7068
parentcbaecee87cfceb2d21413ed431321e9cf480c176 (diff)
parentd336e593cc07139468c8f6f12b929e80ae365159 (diff)
downloadrust-b9c29770cc1565b44932763d37f385734c6bc8a0.tar.gz
rust-b9c29770cc1565b44932763d37f385734c6bc8a0.zip
Rollup merge of #68374 - gitletH:patch-1, r=nikomatsakis
Fix invalid link to the C++ Exception Handling ABI documentation

The original link is longer valid(404). I am assuming it's meant to be pointed to the Itanium C++ Exception Handling ABI documentation.
-rw-r--r--src/libpanic_unwind/gcc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libpanic_unwind/gcc.rs b/src/libpanic_unwind/gcc.rs
index 6e04317d491..591ff9d7fdc 100644
--- a/src/libpanic_unwind/gcc.rs
+++ b/src/libpanic_unwind/gcc.rs
@@ -4,7 +4,7 @@
 //! "Exception Handling in LLVM" (llvm.org/docs/ExceptionHandling.html) and
 //! documents linked from it.
 //! These are also good reads:
-//!     http://mentorembedded.github.io/cxx-abi/abi-eh.html
+//!     https://itanium-cxx-abi.github.io/cxx-abi/abi-eh.html
 //!     http://monoinfinito.wordpress.com/series/exception-handling-in-c/
 //!     http://www.airs.com/blog/index.php?s=exception+frames
 //!