From 146ffa01434768296f4333bac8d601fdf606c379 Mon Sep 17 00:00:00 2001 From: Assad Hashmi Date: Tue, 2 Apr 2024 11:51:40 +0000 Subject: [PATCH] Updated Doxygen comment for reg_is_pointer_sized() --- core/ir/opnd_api.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/ir/opnd_api.h b/core/ir/opnd_api.h index 69175aa06ec..912a517dab2 100644 --- a/core/ir/opnd_api.h +++ b/core/ir/opnd_api.h @@ -3275,7 +3275,9 @@ opnd_is_reg_64bit(opnd_t opnd); DR_API /** * Assumes that \p reg is a DR_REG_ constant. - * Returns true iff it refers to a pointer-sized general-purpose register. + * Returns true iff it refers to a pointer-sized register. \p reg is a general + * purpose register for all architectures apart from AArch64. For AArch64, \p + * reg can also be a scalable vector (SVE) Z register. */ bool reg_is_pointer_sized(reg_id_t reg);