[PATCH] D38274: [X86] Add support for v16i32 UMUL_LOHI/SMUL_LOHI
Simon Pilgrim via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 26 15:31:19 PDT 2017
RKSimon accepted this revision.
RKSimon added a comment.
This revision is now accepted and ready to land.
LGTM
================
Comment at: lib/Target/X86/X86ISelLowering.cpp:21849
+ HighMask[i] = (i/2)*2 + ((i % 2) * NumElts) + 1;
+ LowMask[i] = (i/2)*2 + ((i % 2) * NumElts);
}
----------------
clang-format this? The spacing looks off to me.
https://reviews.llvm.org/D38274
More information about the llvm-commits
mailing list