[llvm-commits] CVS: llvm/lib/Transforms/Utils/LCSSA.cpp
Dan Gohman
djg at cray.com
Fri May 11 14:11:17 PDT 2007
Changes in directory llvm/lib/Transforms/Utils:
LCSSA.cpp updated: 1.42 -> 1.43
---
Log message:
Fix typos.
---
Diffs of the changes: (+1 -1)
LCSSA.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/Transforms/Utils/LCSSA.cpp
diff -u llvm/lib/Transforms/Utils/LCSSA.cpp:1.42 llvm/lib/Transforms/Utils/LCSSA.cpp:1.43
--- llvm/lib/Transforms/Utils/LCSSA.cpp:1.42 Sun May 6 08:37:16 2007
+++ llvm/lib/Transforms/Utils/LCSSA.cpp Fri May 11 16:10:54 2007
@@ -12,7 +12,7 @@
// the left into the right code:
//
// for (...) for (...)
-// if (c) if(c)
+// if (c) if (c)
// X1 = ... X1 = ...
// else else
// X2 = ... X2 = ...
More information about the llvm-commits
mailing list