Test results verified using FileCheck rather than grep | count
[oota-llvm.git] / docs / Passes.rst
index ed721666638f3dd889b7dc91d310870523918642..d279eca3afb65ac3c9c41f57dd249074242b2265 100644 (file)
@@ -34,9 +34,6 @@ LLVM's Analysis and Transform Passes
 .. contents::
     :local:
 
-Written by `Reid Spencer <mailto:rspencer@x10sys.com>`_
-    and Gordon Henriksen
-
 Introduction
 ============
 
@@ -1021,8 +1018,8 @@ possible, it transforms the individual ``alloca`` instructions into nice clean
 scalar SSA form.
 
 This combines a simple scalar replacement of aggregates algorithm with the
-:ref:`mem2reg <passes-mem2reg>` algorithm because often interact, especially
-for C++ programs.  As such, iterating between ``scalarrepl``, then
+:ref:`mem2reg <passes-mem2reg>` algorithm because they often interact,
+especially for C++ programs.  As such, iterating between ``scalarrepl``, then
 :ref:`mem2reg <passes-mem2reg>` until we run out of things to promote works
 well.