From 4ba5a28d5f0302291c0fc36a77421f9a88a025f8 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Sun, 8 Oct 2017 19:24:30 +0000 Subject: [PATCH] Tidyup with clang-format. NFCI. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@315187 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/X86/X86ISelLowering.cpp | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp index d066d5c1077..3c43fe6e11b 100644 --- a/lib/Target/X86/X86ISelLowering.cpp +++ b/lib/Target/X86/X86ISelLowering.cpp @@ -28349,14 +28349,11 @@ static SDValue combineX86ShufflesConstants(const SmallVectorImpl &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 SrcOps, - int SrcOpIndex, SDValue Root, - ArrayRef RootMask, - ArrayRef SrcNodes, - int Depth, bool HasVariableMask, - SelectionDAG &DAG, - TargetLowering::DAGCombinerInfo &DCI, - const X86Subtarget &Subtarget) { +static bool combineX86ShufflesRecursively( + ArrayRef SrcOps, int SrcOpIndex, SDValue Root, + ArrayRef RootMask, ArrayRef 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) -- 2.40.0