diff options
author | Alex Coplan <alex.coplan@arm.com> | 2021-03-10 15:11:16 +0000 |
---|---|---|
committer | Alex Coplan <alex.coplan@arm.com> | 2021-03-10 15:11:16 +0000 |
commit | b6073c9faaf2718062ecd8333336a0d3c1457132 (patch) | |
tree | 71f70a9f0af9b51717b4ca135073108c9d53cccb | |
parent | cb33c7276a6bbf8dd1ffba13d358f49b933d9cc8 (diff) | |
download | gcc-b6073c9faaf2718062ecd8333336a0d3c1457132.zip gcc-b6073c9faaf2718062ecd8333336a0d3c1457132.tar.gz gcc-b6073c9faaf2718062ecd8333336a0d3c1457132.tar.bz2 |
aarch64: Fix typo in aarch64.c comment
This fixes a typo in the description of
aarch64_vfp_is_call_or_return_candidate.
gcc/ChangeLog:
* config/aarch64/aarch64.c (aarch64_vfp_is_call_or_return_candidate):
Fix typo in comment describing "is_ha" argument.
-rw-r--r-- | gcc/config/aarch64/aarch64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/aarch64/aarch64.c b/gcc/config/aarch64/aarch64.c index 6997669..8a86889 100644 --- a/gcc/config/aarch64/aarch64.c +++ b/gcc/config/aarch64/aarch64.c @@ -17276,7 +17276,7 @@ aarch64_composite_type_p (const_tree type, parameter passing registers are available). Upon successful return, *COUNT returns the number of needed registers, - *BASE_MODE returns the mode of the individual register and when IS_HAF + *BASE_MODE returns the mode of the individual register and when IS_HA is not NULL, *IS_HA indicates whether or not the argument is a homogeneous floating-point aggregate or a homogeneous short-vector aggregate. |