[clang] [clang][bytecode] Use SmallVector for Function::Code (PR #151821)
via cfe-commits
cfe-commits at lists.llvm.org
Sat Aug 2 08:34:35 PDT 2025
Timm =?utf-8?q?Bäder?= <tbaeder at redhat.com>
Message-ID:
In-Reply-To: <llvm.org/llvm/llvm-project/pull/151821 at github.com>
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 -- clang/lib/AST/ByteCode/ByteCodeEmitter.cpp clang/lib/AST/ByteCode/ByteCodeEmitter.h clang/lib/AST/ByteCode/Context.cpp clang/lib/AST/ByteCode/Function.h
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/clang/lib/AST/ByteCode/ByteCodeEmitter.cpp b/clang/lib/AST/ByteCode/ByteCodeEmitter.cpp
index d8b112f08..8e7206eb3 100644
--- a/clang/lib/AST/ByteCode/ByteCodeEmitter.cpp
+++ b/clang/lib/AST/ByteCode/ByteCodeEmitter.cpp
@@ -137,7 +137,7 @@ int32_t ByteCodeEmitter::getOffset(LabelTy Label) {
template <typename T>
static void emit(Program &P, llvm::SmallVectorImpl<std::byte> &Code,
const T &Val, bool &Success) {
-size_t ValPos = Code.size();
+ size_t ValPos = Code.size();
size_t Size;
if constexpr (std::is_pointer_v<T>)
``````````
</details>
https://github.com/llvm/llvm-project/pull/151821
More information about the cfe-commits
mailing list