[PATCH] D45203: [X86] VRNDSCALE* folding from masked and single-value ffloor and fceil patterns

Craig Topper via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 5 09:56:35 PDT 2018


craig.topper added inline comments.


================
Comment at: llvm/lib/Target/X86/X86ISelLowering.cpp:30505
+  for (unsigned i = 1; i < Num; ++i)
+    if (SVOp->getMaskElt(i) != Num + i)
+      return SDValue();
----------------
There's a signed vs unsigned comparison warning on this line.


https://reviews.llvm.org/D45203





More information about the llvm-commits mailing list