Home
last modified time | relevance | path

Searched defs:WasmRelocation (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DWasm.h450 struct WasmRelocation { struct
451 uint8_t Type; // The type of the relocation.
452 uint32_t Index; // Index into either symbol or type index space.
453 uint64_t Offset; // Offset from the start of the section.
454 int64_t Addend; // A value to add to the symbol.
456 WasmRelocType getType() const { return static_cast<WasmRelocType>(Type); } in getType()