summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2013-11-26 02:03:20 +0000
committerAndrew Trick <atrick@apple.com>2013-11-26 02:03:20 +0000
commitd3ab37cfeb3bc4e90d00cba8d7e6ccc3db5fc2bb (patch)
treed38a8c7e09d12ba2a151a06ef27222f0e72978b2 /llvm/lib/Target
parent62c5b5713ced72e0637cd4b0c6d3bc258739daea (diff)
downloadbcm5719-llvm-d3ab37cfeb3bc4e90d00cba8d7e6ccc3db5fc2bb.tar.gz
bcm5719-llvm-d3ab37cfeb3bc4e90d00cba8d7e6ccc3db5fc2bb.zip
whitespace
llvm-svn: 195711
Diffstat (limited to 'llvm/lib/Target')
-rw-r--r--llvm/lib/Target/X86/X86ISelLowering.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp
index df2785c0675..f4c926ec8b6 100644
--- a/llvm/lib/Target/X86/X86ISelLowering.cpp
+++ b/llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -17943,12 +17943,12 @@ static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
MachineFunction &MF = DAG.getMachineFunction();
bool OptForSize = MF.getFunction()->getAttributes().
hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
-
- // SHLD/SHRD instructions have lower register pressure, but on some
- // platforms they have higher latency than the equivalent
- // series of shifts/or that would otherwise be generated.
+
+ // SHLD/SHRD instructions have lower register pressure, but on some
+ // platforms they have higher latency than the equivalent
+ // series of shifts/or that would otherwise be generated.
// Don't fold (or (x << c) | (y >> (64 - c))) if SHLD/SHRD instructions
- // have higer latencies and we are not optimizing for size.
+ // have higher latencies and we are not optimizing for size.
if (!OptForSize && Subtarget->isSHLDSlow())
return SDValue();
OpenPOWER on IntegriCloud