Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
More cleanup
  • Loading branch information
zhengyu123 committed Jul 9, 2025
commit b01830520da93e9b71770112be70f592ef7b06fe
4 changes: 0 additions & 4 deletions ddprof-lib/src/main/cpp/safeAccess.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,6 @@ class SafeAccess {
public:
static void initSafeFetch(CodeCache* libjvm);

static bool hasSafeFetch() {
return _safeFetch32Func != nullptr;
}

static inline int safeFetch(int* ptr, int errorValue) {
Comment thread
zhengyu123 marked this conversation as resolved.
Outdated
assert(_safeFetch32Func != nullptr);
return _safeFetch32Func(ptr, errorValue);
Expand Down