[llvm-branch-commits] [clang] [analyzer][NFC] Migrate loc::ConcreteInt to use APSIntPtr (3/4) (PR #120437)
Balazs Benics via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Wed Dec 18 08:17:54 PST 2024
================
@@ -514,9 +514,12 @@ class MemRegionVal : public Loc {
class ConcreteInt : public Loc {
public:
- explicit ConcreteInt(const llvm::APSInt &V) : Loc(ConcreteIntKind, &V) {}
+ explicit ConcreteInt(APSIntPtr V) : Loc(ConcreteIntKind, V.get()) {}
----------------
steakhal wrote:
In short, I don't think. See https://github.com/llvm/llvm-project/pull/120436#discussion_r1890504894.
https://github.com/llvm/llvm-project/pull/120437
More information about the llvm-branch-commits
mailing list