From c702a9ed1c99fc520fa8e003f88949a74e0c269f Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Tue, 3 Jun 2008 00:57:21 +0000 Subject: [PATCH] Fix whitespace in whitespace-significant pseudocode in a comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51890 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Utils/LCSSA.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Transforms/Utils/LCSSA.cpp b/lib/Transforms/Utils/LCSSA.cpp index c3de7979dfb..d94cd594bac 100644 --- a/lib/Transforms/Utils/LCSSA.cpp +++ b/lib/Transforms/Utils/LCSSA.cpp @@ -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 -- 2.34.1