Skip to content

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
Signed-off-by: Alan Jowett <[email protected]>
  • Loading branch information
Alan-Jowett committed Jan 19, 2025
1 parent 11858ff commit 8373d84
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/asm_syntax.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ struct LoadMapFd {

// Load the address of a map value into a register.
struct LoadMapAddress {
Reg dst;
int32_t mapfd{};
int32_t offset{};
Reg dst; // Destination register to store the address of the map value.
int32_t mapfd{}; // File descriptor of the map to load the address from.
int32_t offset{}; // Offset within the map, must be within bounds.

constexpr bool operator==(const LoadMapAddress&) const = default;
};
Expand Down

0 comments on commit 8373d84

Please sign in to comment.