aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Sandiford <richard.sandiford@arm.com>2023-09-12 16:05:08 +0100
committerRichard Sandiford <richard.sandiford@arm.com>2023-09-12 16:05:08 +0100
commit492b60670e69b0a7f11345b69a3c922c20d5d8c3 (patch)
treed5655dc7b1eea1c52affa1f7cb804b1a57f9e166
parented61c87f044f5460109c197855b316641db3c6c6 (diff)
downloadgcc-492b60670e69b0a7f11345b69a3c922c20d5d8c3.zip
gcc-492b60670e69b0a7f11345b69a3c922c20d5d8c3.tar.gz
gcc-492b60670e69b0a7f11345b69a3c922c20d5d8c3.tar.bz2
aarch64: Tweak frame_size comment
This patch fixes another case in which a value was described with an “upside-down” view. gcc/ * config/aarch64/aarch64.h (aarch64_frame::frame_size): Tweak comment.
-rw-r--r--gcc/config/aarch64/aarch64.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/aarch64/aarch64.h b/gcc/config/aarch64/aarch64.h
index 4a4de9c..92965ec 100644
--- a/gcc/config/aarch64/aarch64.h
+++ b/gcc/config/aarch64/aarch64.h
@@ -800,8 +800,8 @@ struct GTY (()) aarch64_frame
STACK_BOUNDARY. */
poly_int64 bytes_above_hard_fp;
- /* The size of the frame. This value is the offset from base of the
- frame (incomming SP) to the stack_pointer. This value is always
+ /* The size of the frame, i.e. the number of bytes between the bottom
+ of the outgoing arguments and the incoming SP. This value is always
a multiple of STACK_BOUNDARY. */
poly_int64 frame_size;