[llvm] [NVPTX][NVPTXLowerArgs] Add NewPM interface for NVPTXLowerArgs (PR #128960)
Artem Belevich via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 27 14:28:29 PST 2025
================
@@ -571,8 +560,7 @@ void copyByValParam(Function &F, Argument &Arg) {
}
} // namespace
-void NVPTXLowerArgs::handleByValParam(const NVPTXTargetMachine &TM,
- Argument *Arg) {
+static void handleByValParam(const NVPTXTargetMachine &TM, Argument *Arg) {
----------------
Artem-B wrote:
No need for static. Just move it into the anonymous namespace above. Applies to other static functions below, too.
https://github.com/llvm/llvm-project/pull/128960
More information about the llvm-commits
mailing list