================ @@ -1062,7 +1062,7 @@ void PolynomialMultiplyRecognize::promoteTo(Instruction *In, // Promote immediates. for (unsigned i = 0, n = In->getNumOperands(); i != n; ++i) { if (ConstantInt *CI = dyn_cast<ConstantInt>(In->getOperand(i))) - if (CI->getType()->getBitWidth() < DestBW) + if (CI->getIntegerType()->getBitWidth() < DestBW) ---------------- nikic wrote:
```suggestion if (CI->getBitWidth() < DestBW) ``` https://github.com/llvm/llvm-project/pull/75217 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits