[llvm-commits] [llvm] r51890 - /llvm/trunk/lib/Transforms/Utils/LCSSA.cpp
Dan Gohman
gohman at apple.com
Mon Jun 2 17:57:23 PDT 2008
Author: djg
Date: Mon Jun 2 19:57:21 2008
New Revision: 51890
URL: http://llvm.org/viewvc/llvm-project?rev=51890&view=rev
Log:
Fix whitespace in whitespace-significant pseudocode in a comment.
Modified:
llvm/trunk/lib/Transforms/Utils/LCSSA.cpp
Modified: llvm/trunk/lib/Transforms/Utils/LCSSA.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Utils/LCSSA.cpp?rev=51890&r1=51889&r2=51890&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Utils/LCSSA.cpp (original)
+++ llvm/trunk/lib/Transforms/Utils/LCSSA.cpp Mon Jun 2 19:57:21 2008
@@ -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
More information about the llvm-commits
mailing list