[llvm] [BatchAA] Fix a reference to a non-exising `pointsToConstantMemory` overload (NFC) (PR #82173)

Momchil Velikov via llvm-commits llvm-commits at lists.llvm.org
Sun Feb 18 10:02:42 PST 2024


================
@@ -635,7 +633,7 @@ class BatchAAResults {
     return AA.alias(LocA, LocB, AAQI);
   }
   bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal = false) {
-    return AA.pointsToConstantMemory(Loc, AAQI, OrLocal);
+    return AA.pointsToConstantMemory(Loc, OrLocal);
----------------
momchil-velikov wrote:

Ack,

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


More information about the llvm-commits mailing list