[clang] [llvm] [SCCP] Infer return attributes in SCCP as well (PR #106732)

Yingwei Zheng via llvm-commits llvm-commits at lists.llvm.org
Fri Aug 30 09:19:59 PDT 2024


================
@@ -277,34 +277,12 @@ static bool runIPSCCP(
   // whether other functions are optimizable.
   SmallVector<ReturnInst*, 8> ReturnsToZap;
 
+  Solver.inferReturnAttributes();
   for (const auto &I : Solver.getTrackedRetVals()) {
     Function *F = I.first;
     const ValueLatticeElement &ReturnValue = I.second;
----------------
dtcxzyw wrote:

```suggestion
  for (const auto &[F, ReturnValue] : Solver.getTrackedRetVals()) {
```

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


More information about the llvm-commits mailing list