[clang] [clang][TableGen] Change MVE Emitter to use const RecordKeeper (PR #108500)
via cfe-commits
cfe-commits at lists.llvm.org
Thu Sep 12 23:10:31 PDT 2024
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 3c9db3a627811f656cc569fe3b8bdb54ba8192bc 9cfc9872bc14c2a887128f83f3f9b38e70ea3258 --extensions h,cpp -- clang/utils/TableGen/MveEmitter.cpp clang/utils/TableGen/TableGenBackends.h
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/clang/utils/TableGen/MveEmitter.cpp b/clang/utils/TableGen/MveEmitter.cpp
index a73ad31448..218fa2d174 100644
--- a/clang/utils/TableGen/MveEmitter.cpp
+++ b/clang/utils/TableGen/MveEmitter.cpp
@@ -1753,7 +1753,7 @@ void EmitterBase::GroupSemaChecks(
class MveEmitter : public EmitterBase {
public:
- MveEmitter(const RecordKeeper &Records) : EmitterBase(Records){};
+ MveEmitter(const RecordKeeper &Records) : EmitterBase(Records) {};
void EmitHeader(raw_ostream &OS) override;
void EmitBuiltinDef(raw_ostream &OS) override;
void EmitBuiltinSema(raw_ostream &OS) override;
``````````
</details>
https://github.com/llvm/llvm-project/pull/108500
More information about the cfe-commits
mailing list