[llvm] [globals-aa] Improved isNonEscapingGlobalNoAlias. (PR #127707)

Eli Friedman via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 18 16:56:54 PST 2025


================
@@ -762,6 +763,19 @@ bool GlobalsAAResult::isNonEscapingGlobalNoAlias(const GlobalValue *GV,
       continue;
     }
 
+    // A non-addr-taken global cannot alias with any non-pointer value.
+    if (!Input->getType()->isPointerTy())
+      continue;
+
+    if (CtxI)
+      if (const ConstantPointerNull *CPN =
----------------
efriedma-quic wrote:

You can use "auto" here.

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


More information about the llvm-commits mailing list