[llvm-commits] [llvm] r102062 - /llvm/trunk/docs/ReleaseNotes.html

Wesley Peck peckw at wesleypeck.com
Thu Apr 22 06:50:46 PDT 2010


Author: peckw
Date: Thu Apr 22 08:50:46 2010
New Revision: 102062

URL: http://llvm.org/viewvc/llvm-project?rev=102062&view=rev
Log:
Fixing small typos in the "New Useful APIs" section of the release notes.

Modified:
    llvm/trunk/docs/ReleaseNotes.html

Modified: llvm/trunk/docs/ReleaseNotes.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ReleaseNotes.html?rev=102062&r1=102061&r2=102062&view=diff
==============================================================================
--- llvm/trunk/docs/ReleaseNotes.html (original)
+++ llvm/trunk/docs/ReleaseNotes.html Thu Apr 22 08:50:46 2010
@@ -729,7 +729,7 @@
     use this to make more accurate estimates of the code size impact of various
     optimizations.</li>
 <li>A new <a href="http://llvm.org/doxygen/InstructionSimplify_8h-source.html">
-    llvm/Analysis/InstructionSimplify.h</a> interface available for doing
+    llvm/Analysis/InstructionSimplify.h</a> interface is available for doing
     symbolic simplification of instructions (e.g. <tt>a+0</tt> -> <tt>a</tt>)
     without requiring the instruction to exist.  This centralizes a lot of
     ad-hoc symbolic manipulation code scattered in various passes.</li>
@@ -737,9 +737,9 @@
     href="http://llvm.org/doxygen/SSAUpdater_8h-source.html">SSAUpdater</a>
     class which efficiently supports
     doing unstructured SSA update operations.  This centralized a bunch of code
-    scattered through various passes (e.g. jump threading, lcssa, loop rotate,
-    etc) for doing this sort of thing.  The code generator has an similar
-    <a href="http://llvm.org/doxygen/MachineSSAUpdater_8h-source.html">
+    scattered throughout various passes (e.g. jump threading, lcssa,
+    loop rotate, etc) for doing this sort of thing.  The code generator has a
+    similar <a href="http://llvm.org/doxygen/MachineSSAUpdater_8h-source.html">
     MachineSSAUpdater</a> class.</li>
 <li>The <a href="http://llvm.org/doxygen/Regex_8h-source.html">
     llvm/Support/Regex.h</a> header exposes a platform independent regular





More information about the llvm-commits mailing list