Skip to content

Commit 366eb8f

Browse files
committed
[Object] Fix IsRela typo after #91280
1 parent 0182f51 commit 366eb8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/include/llvm/Object/ELFTypes.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ struct Elf_Rel_Impl<ELFType<Endianness, true>, true>
487487
// In-memory representation. The serialized representation uses LEB128.
488488
template <bool Is64> struct Elf_Crel_Impl {
489489
using uint = std::conditional_t<Is64, uint64_t, uint32_t>;
490-
static const bool IsRela = true;
490+
static const bool HasAddend = true;
491491
static const bool IsCrel = true;
492492
uint r_offset;
493493
uint32_t r_symidx;

0 commit comments

Comments
 (0)