diff options
author | Tim Northover <Tim.Northover@arm.com> | 2013-01-12 12:38:54 +0000 |
---|---|---|
committer | Tim Northover <Tim.Northover@arm.com> | 2013-01-12 12:38:54 +0000 |
commit | 7aa3080a857010969fcad3c24e124fd0a0f318eb (patch) | |
tree | 33eb7f52f62ac1da5a1334aca7b45764aa7af30e | |
parent | e7a715f61e7855a280734063989a1001320e85de (diff) |
Fix broken links around Itanium C++ ABI in documentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172312 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/ExceptionHandling.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ExceptionHandling.rst b/docs/ExceptionHandling.rst index 47fecd38e4..5f62b80656 100644 --- a/docs/ExceptionHandling.rst +++ b/docs/ExceptionHandling.rst @@ -32,13 +32,13 @@ execution of an application. A more complete description of the Itanium ABI exception handling runtime support of can be found at `Itanium C++ ABI: Exception Handling -<http://www.codesourcery.com/cxx-abi/abi-eh.html>`_. A description of the +<http://refspecs.linuxfoundation.org/abi-eh-1.22.html>`_. A description of the exception frame format can be found at `Exception Frames -<http://refspecs.freestandards.org/LSB_3.0.0/LSB-Core-generic/LSB-Core-generic/ehframechpt.html>`_, +<http://refspecs.linuxfoundation.org/LSB_3.0.0/LSB-Core-generic/LSB-Core-generic/ehframechpt.html>`_, with details of the DWARF 4 specification at `DWARF 4 Standard <http://dwarfstd.org/Dwarf4Std.php>`_. A description for the C++ exception table formats can be found at `Exception Handling Tables -<http://www.codesourcery.com/cxx-abi/exceptions.pdf>`_. +<http://mentorembedded.github.com/cxx-abi/exceptions.pdf>`_. Setjmp/Longjmp Exception Handling --------------------------------- |