[clang] [clang][bytecode] Remove native pointer marshalling (PR #218911)
via cfe-commits
cfe-commits at lists.llvm.org
Sat Aug 29 10:29:08 PDT 2026
Timm =?utf-8?q?Bäder?= <tbaeder at redhat.com>
Message-ID:
In-Reply-To: <llvm.org/llvm/llvm-project/pull/218911 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 origin/main HEAD --extensions h,cpp -- clang/lib/AST/ByteCode/ByteCodeEmitter.cpp clang/lib/AST/ByteCode/Disasm.cpp clang/lib/AST/ByteCode/Function.cpp clang/lib/AST/ByteCode/Function.h clang/lib/AST/ByteCode/Interp.h clang/lib/AST/ByteCode/InterpFrame.cpp clang/lib/AST/ByteCode/InterpFrame.h clang/lib/AST/ByteCode/InterpState.h clang/lib/AST/ByteCode/Program.cpp clang/lib/AST/ByteCode/Program.h clang/utils/TableGen/ClangOpcodesEmitter.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/clang/lib/AST/ByteCode/InterpFrame.h b/clang/lib/AST/ByteCode/InterpFrame.h
index b611cdf87..332213637 100644
--- a/clang/lib/AST/ByteCode/InterpFrame.h
+++ b/clang/lib/AST/ByteCode/InterpFrame.h
@@ -161,15 +161,11 @@ public:
/// Map a location to a source.
SourceInfo getSource(CodePtr PC) const;
- const Expr *getExpr(CodePtr PC) const {
- return getSource(PC).asExpr();
- }
+ const Expr *getExpr(CodePtr PC) const { return getSource(PC).asExpr(); }
SourceLocation getLocation(CodePtr PC) const {
return getSource(PC).getLoc();
}
- SourceRange getRange(CodePtr PC) const {
- return getSource(PC).getRange();
- }
+ SourceRange getRange(CodePtr PC) const { return getSource(PC).getRange(); }
unsigned getDepth() const { return Depth; }
unsigned getArgSize() const { return ArgSize; }
``````````
</details>
https://github.com/llvm/llvm-project/pull/218911
More information about the cfe-commits
mailing list