mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
Tidyup with clang-format. NFCI.
llvm-svn: 315187
This commit is contained in:
parent
a7e60af32b
commit
d9f42bc3c3
@ -28349,14 +28349,11 @@ static SDValue combineX86ShufflesConstants(const SmallVectorImpl<SDValue> &Ops,
|
||||
/// would simplify under the threshold for PSHUFB formation because of
|
||||
/// combine-ordering. To fix this, we should do the redundant instruction
|
||||
/// combining in this recursive walk.
|
||||
static bool combineX86ShufflesRecursively(ArrayRef<SDValue> SrcOps,
|
||||
int SrcOpIndex, SDValue Root,
|
||||
ArrayRef<int> RootMask,
|
||||
ArrayRef<const SDNode*> SrcNodes,
|
||||
int Depth, bool HasVariableMask,
|
||||
SelectionDAG &DAG,
|
||||
TargetLowering::DAGCombinerInfo &DCI,
|
||||
const X86Subtarget &Subtarget) {
|
||||
static bool combineX86ShufflesRecursively(
|
||||
ArrayRef<SDValue> SrcOps, int SrcOpIndex, SDValue Root,
|
||||
ArrayRef<int> RootMask, ArrayRef<const SDNode *> SrcNodes, int Depth,
|
||||
bool HasVariableMask, SelectionDAG &DAG,
|
||||
TargetLowering::DAGCombinerInfo &DCI, const X86Subtarget &Subtarget) {
|
||||
// Bound the depth of our recursive combine because this is ultimately
|
||||
// quadratic in nature.
|
||||
if (Depth > 8)
|
||||
|
Loading…
Reference in New Issue
Block a user