[llvm] r344471 - [X86] Fix bad indentation. NFC
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Sat Oct 13 21:01:40 PDT 2018
Author: ctopper
Date: Sat Oct 13 21:01:40 2018
New Revision: 344471
URL: http://llvm.org/viewvc/llvm-project?rev=344471&view=rev
Log:
[X86] Fix bad indentation. NFC
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=344471&r1=344470&r2=344471&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86ISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86ISelLowering.cpp Sat Oct 13 21:01:40 2018
@@ -19946,7 +19946,7 @@ static SDValue LowerStore(SDValue Op, co
// Without AVX512DQ, we need to use a scalar type for v2i1/v4i1/v8i1 loads.
if (StoredVal.getValueType().isVector() &&
- StoredVal.getValueType().getVectorElementType() == MVT::i1) {
+ StoredVal.getValueType().getVectorElementType() == MVT::i1) {
assert(StoredVal.getValueType().getVectorNumElements() <= 8 &&
"Unexpected VT");
assert(!St->isTruncatingStore() && "Expected non-truncating store");
More information about the llvm-commits
mailing list