[llvm] Return rvalue reference from temporary argument (PR #127400)
via llvm-commits
llvm-commits at lists.llvm.org
Sun Feb 16 07:13:02 PST 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 538b8f8008b95782ea1967284e22500c72aec67d e0e37c9233ae977f73bfc2793a2a2172decbc828 --extensions cpp,h -- llvm/include/llvm/Analysis/OptimizationRemarkEmitter.h llvm/include/llvm/IR/DiagnosticInfo.h llvm/lib/Analysis/InlineAdvisor.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Analysis/InlineAdvisor.cpp b/llvm/lib/Analysis/InlineAdvisor.cpp
index 2041610cd5..6cf6f10f20 100644
--- a/llvm/lib/Analysis/InlineAdvisor.cpp
+++ b/llvm/lib/Analysis/InlineAdvisor.cpp
@@ -337,8 +337,7 @@ static raw_ostream &operator<<(raw_ostream &R, const ore::NV &Arg) {
return R << Arg.Val;
}
-template <class RemarkT>
-RemarkT &operator<<(RemarkT &R, const InlineCost &IC) {
+template <class RemarkT> RemarkT &operator<<(RemarkT &R, const InlineCost &IC) {
using namespace ore;
if (IC.isAlways()) {
R << "(cost=always)";
``````````
</details>
https://github.com/llvm/llvm-project/pull/127400
More information about the llvm-commits
mailing list