[clang] [clang][bytecode][NFC] Make CheckVolatile static (PR #113785)
Timm Baeder via cfe-commits
cfe-commits at lists.llvm.org
Sat Oct 26 20:12:12 PDT 2024
https://github.com/tbaederr created https://github.com/llvm/llvm-project/pull/113785
None
>From ff68ca5f76a9c005b6a3016c041ad8fb83f47602 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Timm=20B=C3=A4der?= <tbaeder at redhat.com>
Date: Sun, 27 Oct 2024 04:09:49 +0100
Subject: [PATCH] [clang][bytecode][NFC] Make CheckVolatile static
---
clang/lib/AST/ByteCode/Interp.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/clang/lib/AST/ByteCode/Interp.cpp b/clang/lib/AST/ByteCode/Interp.cpp
index fdc4b38b8aa6dc..c8ce08aa3eef21 100644
--- a/clang/lib/AST/ByteCode/Interp.cpp
+++ b/clang/lib/AST/ByteCode/Interp.cpp
@@ -507,8 +507,8 @@ bool CheckMutable(InterpState &S, CodePtr OpPC, const Pointer &Ptr) {
return false;
}
-bool CheckVolatile(InterpState &S, CodePtr OpPC, const Pointer &Ptr,
- AccessKinds AK) {
+static bool CheckVolatile(InterpState &S, CodePtr OpPC, const Pointer &Ptr,
+ AccessKinds AK) {
assert(Ptr.isLive());
// FIXME: This check here might be kinda expensive. Maybe it would be better
More information about the cfe-commits
mailing list