[llvm-commits] [llvm] r61538 - /llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp
Bill Wendling
isanbard at gmail.com
Wed Dec 31 17:19:59 PST 2008
Author: void
Date: Wed Dec 31 19:19:59 2008
New Revision: 61538
URL: http://llvm.org/viewvc/llvm-project?rev=61538&view=rev
Log:
Fix comment.
Modified:
llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp
Modified: llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp?rev=61538&r1=61537&r2=61538&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp Wed Dec 31 19:19:59 2008
@@ -4889,7 +4889,7 @@
// Let C = (or A, B)
// C true implies that either A, B, or both are true.
//
- // (xor C, true) is true only if C is false. We can the apply de
+ // (xor C, true) is true only if C is false. We can then apply de
// Morgan's law. QED.
BinaryOperator *Op0I = dyn_cast<BinaryOperator>(Op0);
if (Op0I) {
More information about the llvm-commits
mailing list