[llvm] [MCLinker] MCLinker [nfr][wip] (PR #132989)
via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 29 20:28:57 PDT 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff HEAD~1 HEAD --extensions cpp,h -- llvm/include/llvm/MCLinker/MCLinker.h llvm/include/llvm/MCLinker/MCPipeline.h llvm/include/llvm/ModuleSplitter/ModuleSplitter.h llvm/lib/MCLinker/MCLinker.cpp llvm/lib/MCLinker/MCLinkerUtils.cpp llvm/lib/MCLinker/MCLinkerUtils.h llvm/lib/MCLinker/MCPipeline.cpp llvm/lib/ModuleSplitter/ModuleSplitter.cpp llvm/tools/llvm-module-splitter/llvm-module-splitter.cpp llvm/unittests/MCLinker/MCLinkerTest.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/include/llvm/MCLinker/MCPipeline.h b/llvm/include/llvm/MCLinker/MCPipeline.h
index 6397a236c..4501f61e0 100644
--- a/llvm/include/llvm/MCLinker/MCPipeline.h
+++ b/llvm/include/llvm/MCLinker/MCPipeline.h
@@ -22,8 +22,7 @@ namespace mclinker {
/// Build a pipeline that does machine specific codgen but stops before
/// AsmPrint.
bool addPassesToEmitMC(llvm::TargetMachine &, llvm::legacy::PassManagerBase &,
- bool,
- llvm::MachineModuleInfoWrapperPass *, unsigned);
+ bool, llvm::MachineModuleInfoWrapperPass *, unsigned);
/// Build a pipeline that does AsmPrint only.
bool addPassesToAsmPrint(llvm::TargetMachine &, llvm::legacy::PassManagerBase &,
diff --git a/llvm/lib/MCLinker/MCLinker.cpp b/llvm/lib/MCLinker/MCLinker.cpp
index df6f7dadb..fe7673f0a 100644
--- a/llvm/lib/MCLinker/MCLinker.cpp
+++ b/llvm/lib/MCLinker/MCLinker.cpp
@@ -34,8 +34,7 @@ MCInfo::MCInfo(std::unique_ptr<llvm::MachineModuleInfo> &&MachineModuleInfo,
std::unique_ptr<llvm::TargetMachine> &&TgtMachine,
std::unique_ptr<llvm::MCContext> &&McContext,
std::optional<int> SplitIdx)
- : ModuleAndContext(std::move(MAndContext)),
- McContext(std::move(McContext)),
+ : ModuleAndContext(std::move(MAndContext)), McContext(std::move(McContext)),
MachineModuleInfo(std::move(MachineModuleInfo)),
TgtMachine(std::move(TgtMachine)), SplitIdx(SplitIdx) {
std::string BufStr;
@@ -43,8 +42,8 @@ MCInfo::MCInfo(std::unique_ptr<llvm::MachineModuleInfo> &&MachineModuleInfo,
llvm::WriteBitcodeToFile(*ModuleAndContext, BufOS);
ModuleBuf = WritableMemoryBuffer::getNewUninitMemBuffer(BufStr.size());
memcpy(ModuleBuf->getBufferStart(), BufStr.c_str(), BufStr.size());
- for(Function& F: ModuleAndContext->functions()) {
- FnNameToFnPtr.insert( {F.getName(), &F});
+ for (Function &F : ModuleAndContext->functions()) {
+ FnNameToFnPtr.insert({F.getName(), &F});
}
}
diff --git a/llvm/lib/MCLinker/MCPipeline.cpp b/llvm/lib/MCLinker/MCPipeline.cpp
index db5aa32ee..c4f66f12e 100644
--- a/llvm/lib/MCLinker/MCPipeline.cpp
+++ b/llvm/lib/MCLinker/MCPipeline.cpp
@@ -57,8 +57,8 @@ bool SetMachineFunctionBasePass::doFinalization(llvm::Module &) {
/// AsmPrint. Returns true if failed.
bool llvm::mclinker::addPassesToEmitMC(
llvm::TargetMachine &TgtMachine, llvm::legacy::PassManagerBase &PM,
- bool DisableVerify,
- llvm::MachineModuleInfoWrapperPass *MMIWP, unsigned NumFnBase) {
+ bool DisableVerify, llvm::MachineModuleInfoWrapperPass *MMIWP,
+ unsigned NumFnBase) {
// Targets may override createPassConfig to provide a target-specific
// subclass.
TargetPassConfig *PassConfig = TgtMachine.createPassConfig(PM);
``````````
</details>
https://github.com/llvm/llvm-project/pull/132989
More information about the llvm-commits
mailing list