[llvm] [InferAttrs] Mark errnomem-setting libcalls as such (PR #124742)

Antonio Frighetto via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 17 11:27:13 PST 2025


================
@@ -396,6 +431,7 @@ bool llvm::inferNonMandatoryLibFuncAttrs(Function &F,
     Changed |= setDoesNotThrow(F);
     Changed |= setDoesNotCapture(F, 0);
     Changed |= setOnlyReadsMemory(F, 0);
+    Changed |= setOnlyAccessesArgMemOrErrnoMem(F, ModRefInfo::Ref);
----------------
antoniofrighetto wrote:

Right, should be inaccessiblemem: read.

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


More information about the llvm-commits mailing list