From 8373d840022af5fddc71915a5de1d01b46244f76 Mon Sep 17 00:00:00 2001 From: Alan Jowett Date: Sun, 19 Jan 2025 14:14:38 -0800 Subject: [PATCH] PR feedback Signed-off-by: Alan Jowett --- src/asm_syntax.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/asm_syntax.hpp b/src/asm_syntax.hpp index 645cec66..53b2ba49 100644 --- a/src/asm_syntax.hpp +++ b/src/asm_syntax.hpp @@ -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; };