diff options
author | Dan Gohman <gohman@apple.com> | 2008-06-03 00:57:21 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-06-03 00:57:21 +0000 |
commit | c702a9ed1c99fc520fa8e003f88949a74e0c269f (patch) | |
tree | 1b9944eee0afd3e36dde529ddddcbc0f349e3bdc /lib | |
parent | 6e68f59b78d8dcb3940469351a08d5884f190223 (diff) | |
download | external_llvm-c702a9ed1c99fc520fa8e003f88949a74e0c269f.zip external_llvm-c702a9ed1c99fc520fa8e003f88949a74e0c269f.tar.gz external_llvm-c702a9ed1c99fc520fa8e003f88949a74e0c269f.tar.bz2 |
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
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Transforms/Utils/LCSSA.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/Utils/LCSSA.cpp b/lib/Transforms/Utils/LCSSA.cpp index c3de797..d94cd59 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 |