[llvm] [IPSCCP] Add range attribute handling. (PR #86747)
Andreas Jonson via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 27 10:34:26 PDT 2024
================
@@ -788,6 +794,17 @@ class SCCPInstVisitor : public InstVisitor<SCCPInstVisitor> {
markOverdefined(ValueState[V], V);
}
+ void trackValueOfArgument(Argument *A) {
+ if (A->getType()->isIntegerTy()) {
----------------
andjo403 wrote:
I only assumed that vectors was not handled as there was a restriction to only non-vectors for the range metadata.
https://github.com/llvm/llvm-project/pull/86747
More information about the llvm-commits
mailing list