[llvm] r315187 - Tidyup with clang-format. NFCI.
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Sun Oct 8 12:24:30 PDT 2017
Author: rksimon
Date: Sun Oct 8 12:24:30 2017
New Revision: 315187
URL: http://llvm.org/viewvc/llvm-project?rev=315187&view=rev
Log:
Tidyup with clang-format. NFCI.
Modified:
llvm/trunk/lib/Target/X86/X86ISelLowering.cpp
Modified: llvm/trunk/lib/Target/X86/X86ISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86ISelLowering.cpp?rev=315187&r1=315186&r2=315187&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86ISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86ISelLowering.cpp Sun Oct 8 12:24:30 2017
@@ -28349,14 +28349,11 @@ static SDValue combineX86ShufflesConstan
/// 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)
More information about the llvm-commits
mailing list