[llvm] Expanding the Histogram Intrinsic (PR #127399)

Paschalis Mpeis via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 21 04:12:08 PST 2025


================
@@ -8658,14 +8658,16 @@ VPRecipeBuilder::tryToWidenHistogram(const HistogramInfo *HI,
                                      ArrayRef<VPValue *> Operands) {
   // FIXME: Support other operations.
   unsigned Opcode = HI->Update->getOpcode();
-  assert((Opcode == Instruction::Add || Opcode == Instruction::Sub) &&
-         "Histogram update operation must be an Add or Sub");
+  assert(VPHistogramRecipe::isLegalUpdateInstruction(HI->Update) &&
+         "Found Ilegal update instruction for histogram");
----------------
paschalis-mpeis wrote:

nit: 
```suggestion
         "Found Illegal update instruction for histogram");
```



https://github.com/llvm/llvm-project/pull/127399


More information about the llvm-commits mailing list