diff options
author | Michael Liao <michael.liao@intel.com> | 2012-08-10 14:39:24 +0000 |
---|---|---|
committer | Michael Liao <michael.liao@intel.com> | 2012-08-10 14:39:24 +0000 |
commit | f6c24eef626a0675c907f28cd8dea9b666c69d09 (patch) | |
tree | 882726395b242f8763d86b5832c6f92240401c7c | |
parent | 25ac7518ffda5f4256e8333dde4801270bb26418 (diff) |
remove tailing whitespaces and test commit
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161664 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86ISelLowering.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp index c68d62bdfd..cc02393f24 100644 --- a/lib/Target/X86/X86ISelLowering.cpp +++ b/lib/Target/X86/X86ISelLowering.cpp @@ -15156,7 +15156,7 @@ static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG, return SDValue(); } -static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG, +static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG, const X86Subtarget* Subtarget) { DebugLoc dl = N->getDebugLoc(); EVT VT = N->getValueType(0); @@ -15173,8 +15173,8 @@ static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG, bool NegB = (B.getOpcode() == ISD::FNEG); bool NegC = (C.getOpcode() == ISD::FNEG); - // Negative multiplication when NegA xor NegB - bool NegMul = (NegA != NegB); + // Negative multiplication when NegA xor NegB + bool NegMul = (NegA != NegB); if (NegA) A = A.getOperand(0); if (NegB) |