[llvm] [TTI] getScalingFactorCost should return InstructionCost::getInvalid() instead of -1. (PR #129802)

David Sherwood via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 5 00:49:06 PST 2025


================
@@ -364,7 +364,7 @@ class TargetTransformInfoImplBase {
                               Scale, AddrSpace, /*I=*/nullptr,
                               BaseOffset.getScalable()))
       return 0;
-    return -1;
+    return InstructionCost::getInvalid();
----------------
david-arm wrote:

The fix looks sensible, but the fact all the tests pass means that we were also missing some test coverage. Do you know if it's even possible to expose the invalid cost path in a test?

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


More information about the llvm-commits mailing list