summaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/TargetLowering.cpp
diff options
context:
space:
mode:
authorStephen Lin <stephenwlin@gmail.com>2013-07-08 00:37:03 +0000
committerStephen Lin <stephenwlin@gmail.com>2013-07-08 00:37:03 +0000
commit155615d7dc4e4fbfd3b7273720a76356468edf46 (patch)
treec690636d38dbc8d5b3f46f578f25ce67fe33f240 /lib/CodeGen/SelectionDAG/TargetLowering.cpp
parent01f8d579f7672872324208ac5bc4ac311e81b22e (diff)
downloadllvm-155615d7dc4e4fbfd3b7273720a76356468edf46.tar.gz
llvm-155615d7dc4e4fbfd3b7273720a76356468edf46.tar.bz2
llvm-155615d7dc4e4fbfd3b7273720a76356468edf46.tar.xz
Remove trailing whitespace from SelectionDAG/*.cpp
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185780 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/TargetLowering.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/TargetLowering.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/lib/CodeGen/SelectionDAG/TargetLowering.cpp
index 69ddea4d8e..e3c63066de 100644
--- a/lib/CodeGen/SelectionDAG/TargetLowering.cpp
+++ b/lib/CodeGen/SelectionDAG/TargetLowering.cpp
@@ -510,7 +510,7 @@ bool TargetLowering::SimplifyDemandedBits(SDValue Op,
// into an AND, as we know the bits will be cleared.
// e.g. (X | C1) ^ C2 --> (X | C1) & ~C2 iff (C1&C2) == C2
// NB: it is okay if more bits are known than are requested
- if ((NewMask & (KnownZero|KnownOne)) == NewMask) { // all known on one side
+ if ((NewMask & (KnownZero|KnownOne)) == NewMask) { // all known on one side
if (KnownOne == KnownOne2) { // set bits are the same on both sides
EVT VT = Op.getValueType();
SDValue ANDC = TLO.DAG.getConstant(~KnownOne & NewMask, VT);