Untabify and whitespace cleanups.
[oota-llvm.git] / lib / Transforms / InstCombine / InstCombineSelect.cpp
index ae0b5769c64851c48fabee16bf1b370c7edbd97b..079ae34fbeffa874835b684ae193313e31b19c0c 100644 (file)
@@ -392,11 +392,11 @@ static Value *SimplifyWithOpReplaced(Value *V, Value *Op, Value *RepOp,
 ///
 /// This also tries to turn
 /// --- Single bit tests:
-/// if ((x & C) == 0) x |= C   to  x |= C
-/// if ((x & C) != 0) x ^= C   to  x &= ~C
-/// if ((x & C) == 0) x ^= C   to  x |= C
-/// if ((x & C) != 0) x &= ~C  to  x &= ~C
-/// if ((x & C) == 0) x &= ~C  to  nothing
+/// if ((x & C) == 0) x |= C    to  x |= C
+/// if ((x & C) != 0) x ^= C    to  x &= ~C
+/// if ((x & C) == 0) x ^= C    to  x |= C
+/// if ((x & C) != 0) x &= ~C   to  x &= ~C
+/// if ((x & C) == 0) x &= ~C   to  nothing
 static Value *foldSelectICmpAndOr(SelectInst &SI, Value *TrueVal,
                                   Value *FalseVal,
                                   InstCombiner::BuilderTy *Builder) {