summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Pilgrim <llvm-dev@redking.me.uk>2022-01-11 16:40:24 +0000
committerSimon Pilgrim <llvm-dev@redking.me.uk>2022-01-11 16:41:16 +0000
commit20404d820c7caddff7416b3f535de74360450baf (patch)
treee9c27fc6bf04facc7b897b57654d007d615d097b
parent3712372fa5a59c8eea26f62c6aab95c486714248 (diff)
downloadllvm-20404d820c7caddff7416b3f535de74360450baf.tar.gz
[X86] Apply clang-format to X86TargetLowering::isVectorShiftByScalarCheap
Fix indentation
-rw-r--r--llvm/lib/Target/X86/X86ISelLowering.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp
index 9f47d6f88b4f..430d1c757f96 100644
--- a/llvm/lib/Target/X86/X86ISelLowering.cpp
+++ b/llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -33058,7 +33058,7 @@ bool X86TargetLowering::isVectorShiftByScalarCheap(Type *Ty) const {
// AVX512BW has shifts such as vpsllvw.
if (Subtarget.hasBWI() && Bits == 16)
- return false;
+ return false;
// Otherwise, it's significantly cheaper to shift by a scalar amount than by a
// fully general vector.