Upstream: https://gcc.gnu.org/git/?p=gcc.git;a=shortlog;h=refs/vendors/ARM/heads/CVE-2023-4039/gcc-10
35 lines
1.2 KiB
Diff
35 lines
1.2 KiB
Diff
From b5e2fcfa7a1c722fe426132562af4a96fff9fb5c Mon Sep 17 00:00:00 2001
|
||
From: Richard Sandiford <richard.sandiford@arm.com>
|
||
Date: Thu, 22 Jun 2023 22:26:30 +0100
|
||
Subject: [PATCH] aarch64: Tweak frame_size comment
|
||
MIME-Version: 1.0
|
||
Content-Type: text/plain; charset=utf8
|
||
Content-Transfer-Encoding: 8bit
|
||
|
||
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.
|
||
---
|
||
gcc/config/aarch64/aarch64.h | 4 ++--
|
||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
||
diff --git a/gcc/config/aarch64/aarch64.h b/gcc/config/aarch64/aarch64.h
|
||
index 9839e18a27e..8d8916c7227 100644
|
||
--- a/gcc/config/aarch64/aarch64.h
|
||
+++ b/gcc/config/aarch64/aarch64.h
|
||
@@ -844,8 +844,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;
|
||
|
||
--
|
||
2.39.3
|