mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
whitespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195711 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
59ac92ab4b
commit
151ed66489
@ -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();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user