[llvm] MetaRenamer: replaced command line options with pass parameters (PR #133975)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 1 18:40:45 PDT 2025


================
@@ -129,7 +99,8 @@ void MetaRename(Function &F) {
 }
 
 void MetaRename(Module &M,
-                function_ref<TargetLibraryInfo &(Function &)> GetTLI) {
+                function_ref<TargetLibraryInfo &(Function &)> GetTLI,
+                MetaRenamerOptions const& Options) {
----------------
arsenm wrote:

```suggestion
                const MetaRenamerOptions &Options) {
```

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


More information about the llvm-commits mailing list