[llvm] [BOLT] Add getter for optional relocations (PR #133085)
Paschalis Mpeis via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 26 06:50:04 PDT 2025
https://github.com/paschalis-mpeis created https://github.com/llvm/llvm-project/pull/133085
Minor refactoring on comments.
>From 4af522fe4df086e970e441324df7aba127909c9f Mon Sep 17 00:00:00 2001
From: Paschalis Mpeis <Paschalis.Mpeis at arm.com>
Date: Wed, 26 Mar 2025 13:09:42 +0000
Subject: [PATCH] [BOLT] Add getter for optional relocations
Minor refactoring on comments.
---
bolt/include/bolt/Core/Relocation.h | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/bolt/include/bolt/Core/Relocation.h b/bolt/include/bolt/Core/Relocation.h
index 9292d0496d658..78e94cd63829d 100644
--- a/bolt/include/bolt/Core/Relocation.h
+++ b/bolt/include/bolt/Core/Relocation.h
@@ -57,7 +57,8 @@ class Relocation {
uint32_t Type;
private:
- /// Relocations added by optimizations can be optional.
+ /// Relocations added by optimizations can be optional, meaning they can be
+ /// omitted under certain circumstances.
bool Optional = false;
public:
@@ -72,10 +73,10 @@ class Relocation {
/// Return size in bytes of the given relocation \p Type.
static size_t getSizeForType(uint32_t Type);
- /// Some relocations added by optimizations are optional, meaning they can be
- /// omitted under certain circumstances.
void setOptional() { Optional = true; }
+ bool isOptional() { return Optional; }
+
/// Return size of this relocation.
size_t getSize() const { return getSizeForType(Type); }
More information about the llvm-commits
mailing list