aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-06-08 22:57:59 +0000
committerDan Gohman <gohman@apple.com>2008-06-08 22:57:59 +0000
commite3280787058d44ec9d56e6e8214511bbfa0c0fa1 (patch)
treee7ac71914659bcf82f865d1fae2aacfc7bb44cbd
parentfd0d22e638e27c0c78f1d251e88df889d85e25e6 (diff)
downloadexternal_llvm-e3280787058d44ec9d56e6e8214511bbfa0c0fa1.zip
external_llvm-e3280787058d44ec9d56e6e8214511bbfa0c0fa1.tar.gz
external_llvm-e3280787058d44ec9d56e6e8214511bbfa0c0fa1.tar.bz2
Add some links to doxygen documentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52106 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/ReleaseNotes.html14
1 files changed, 10 insertions, 4 deletions
diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html
index c63f6f4..402aa61 100644
--- a/docs/ReleaseNotes.html
+++ b/docs/ReleaseNotes.html
@@ -101,9 +101,14 @@ It includes a large number of features and refinements from LLVM 2.2.</p>
standardize on <tt>FOOCLASS::Create</tt> for all IR classes in the future,
but not all of them have been moved over yet.</li>
<li>LLVM 2.3 renames the LLVMBuilder and LLVMFoldingBuilder classes to
- IRBuilder.</li>
-<li>MRegisterInfo was renamed to TargetRegisterInfo.</li>
-<li>The MappedFile class is gone, please use MemoryBuffer instead.</li>
+ <a href="http://llvm.org/doxygen/classllvm_1_1IRBuilder.html">IRBuilder</a>.
+ </li>
+<li>MRegisterInfo was renamed to
+ <a href="http://llvm.org/doxygen/classllvm_1_1TargetRegisterInfo.html">
+ TargetRegisterInfo</a>.</li>
+<li>The MappedFile class is gone, please use
+ <a href="http://llvm.org/doxygen/classllvm_1_1MemoryBuffer.html">
+ MemoryBuffer</a> instead.</li>
<li>The '<tt>-enable-eh</tt>' flag to llc has been removed. Now code should
encode whether it is safe to omit unwind information for a function by
tagging the Function object with the '<tt>nounwind</tt>' attribute.</li>
@@ -372,7 +377,8 @@ faster:</p>
both pre-pass and post-pass scheduling, and to improve compiler-debugging
output.</li>
-<li>The target-independent code generator infrastructure now uses LLVM's APInt
+<li>The target-independent code generator infrastructure now uses LLVM's
+ <a href="http://llvm.org/doxygen/classllvm_1_1APInt.html">APInt</a>
class to handle integer values, which allows it to support integer types
larger than 64 bits. Note that support for such types is also dependent on
target-specific support. Use of APInt is also a step toward support for