[llvm-branch-commits] [llvm] cfi creates alias (PR #203171)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Wed Jun 10 22:00:16 PDT 2026
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 origin/main HEAD --extensions cpp -- llvm/lib/Transforms/IPO/LowerTypeTests.cpp llvm/lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp llvm/lib/Transforms/IPO/WholeProgramDevirt.cpp --diff_from_common_commit
``````````
:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp b/llvm/lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp
index cb4d81322..1f4dff0aa 100644
--- a/llvm/lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp
+++ b/llvm/lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp
@@ -179,8 +179,7 @@ void simplifyExternals(Module &M) {
F.getName().starts_with("llvm."))
continue;
- Function *NewF =
- Function::Create(EmptyFT, GlobalValue::ExternalLinkage,
+ Function *NewF = Function::Create(EmptyFT, GlobalValue::ExternalLinkage,
F.getAddressSpace(), "", &M);
NewF->copyAttributesFrom(&F);
// Only copy function attribtues.
diff --git a/llvm/lib/Transforms/IPO/WholeProgramDevirt.cpp b/llvm/lib/Transforms/IPO/WholeProgramDevirt.cpp
index 1b1596454..590ed4fdc 100644
--- a/llvm/lib/Transforms/IPO/WholeProgramDevirt.cpp
+++ b/llvm/lib/Transforms/IPO/WholeProgramDevirt.cpp
@@ -1207,7 +1207,8 @@ bool DevirtIndex::tryFindVirtualCallTargets(
ValueInfo TheFn = VTP.FuncVI;
if (TheFn.getSummaryList().size() == 1) {
- if (auto *AS = dyn_cast<AliasSummary>(TheFn.getSummaryList()[0].get())) {
+ if (auto *AS =
+ dyn_cast<AliasSummary>(TheFn.getSummaryList()[0].get())) {
TheFn = AS->getAliaseeVI();
}
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/203171
More information about the llvm-branch-commits
mailing list