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 | 53acb32afc06986db6cdc709b2498c3870ffa43f (patch) | |
tree | e36d4bb26ec2e64eb876770c1268b74abdcba6b8 /llvm/docs/ExceptionHandling.rst | |
parent | d7dc554c877c7489b8fe1652b360d46d42f466b0 (diff) | |
download | bcm5719-llvm-53acb32afc06986db6cdc709b2498c3870ffa43f.tar.gz bcm5719-llvm-53acb32afc06986db6cdc709b2498c3870ffa43f.zip |
Fix broken links around Itanium C++ ABI in documentation.
llvm-svn: 172312
Diffstat (limited to 'llvm/docs/ExceptionHandling.rst')
-rw-r--r-- | llvm/docs/ExceptionHandling.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/docs/ExceptionHandling.rst b/llvm/docs/ExceptionHandling.rst index 47fecd38e48..5f62b806562 100644 --- a/llvm/docs/ExceptionHandling.rst +++ b/llvm/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 --------------------------------- |