Fix whitespace in whitespace-significant pseudocode in a comment.
authorDan Gohman <gohman@apple.com>
Tue, 3 Jun 2008 00:57:21 +0000 (00:57 +0000)
committerDan Gohman <gohman@apple.com>
Tue, 3 Jun 2008 00:57:21 +0000 (00:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51890 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Utils/LCSSA.cpp

index c3de7979dfba16c2fa5c4a6c98bca2eeac79cf00..d94cd594bac688e48f54662c7c282a656fa5cbf5 100644 (file)
@@ -17,8 +17,8 @@
 //   else                     else
 //     X2 = ...                 X2 = ...
 //   X3 = phi(X1, X2)         X3 = phi(X1, X2)
-// ... = X3 + 4              X4 = phi(X3)
-//                           ... = X4 + 4
+// ... = X3 + 4             X4 = phi(X3)
+//                          ... = X4 + 4
 //
 // This is still valid LLVM; the extra phi nodes are purely redundant, and will
 // be trivially eliminated by InstCombine.  The major benefit of this