[PATCH] D46179: [X86] Lowering addus/subus intrinsics to native IR (LLVM part)
Craig Topper via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Aug 9 10:17:41 PDT 2018
craig.topper added inline comments.
================
Comment at: lib/Target/X86/X86ISelLowering.cpp:32900
+ (Subtarget.useBWIRegs() && (VT == MVT::v64i8 || VT == MVT::v32i16 ||
+ VT == MVT::v16i32 || MVT::v8i64)))) {
+ ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
----------------
Why are v16i32 and v8i64 included here? We don't have saturating add/sub for those types do we?
Repository:
rL LLVM
https://reviews.llvm.org/D46179
More information about the llvm-commits
mailing list