[llvm] [IPSCCP] Add range attribute handling. (PR #86747)
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 27 05:17:20 PDT 2024
================
@@ -788,6 +794,17 @@ class SCCPInstVisitor : public InstVisitor<SCCPInstVisitor> {
markOverdefined(ValueState[V], V);
}
+ void trackValueOfArgument(Argument *A) {
+ if (A->getType()->isIntegerTy()) {
----------------
nikic wrote:
Do we need the restriction to non-vectors here? IIRC ipsccp can handle vectors though it mostly doesn't.
https://github.com/llvm/llvm-project/pull/86747
More information about the llvm-commits
mailing list