Update links to the gcc and java documentation that 404'd.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214700 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Benjamin Kramer 2014-08-04 09:26:40 +00:00
parent 534100b31e
commit a6a0f12942

View File

@ -24,10 +24,10 @@ optimized code generation for the following:
* Proper semantics for Java-style memory, for both ``volatile`` and regular
shared variables. (`Java Specification
<http://java.sun.com/docs/books/jls/third_edition/html/memory.html>`_)
<http://docs.oracle.com/javase/specs/jls/se8/html/jls-17.html>`_)
* gcc-compatible ``__sync_*`` builtins. (`Description
<http://gcc.gnu.org/onlinedocs/gcc/Atomic-Builtins.html>`_)
<https://gcc.gnu.org/onlinedocs/gcc/_005f_005fsync-Builtins.html>`_)
* Other scenarios with atomic semantics, including ``static`` variables with
non-trivial constructors in C++.