2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-03-29 07:00:24 +08:00

[AArch64][committed] Fix typo in aarch64_mangle_type

* config/aarch64/aarch64.c (aarch64_mangle_type): Fix typo in comment.

From-SVN: r266472
This commit is contained in:
Kyrylo Tkachov 2018-11-26 17:51:58 +00:00 committed by Kyrylo Tkachov
parent f51c724c7e
commit 17f8ace20e
2 changed files with 5 additions and 1 deletions
gcc
ChangeLog
config/aarch64

@ -1,3 +1,7 @@
2018-11-26 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
* config/aarch64/aarch64.c (aarch64_mangle_type): Fix typo in comment.
2018-11-26 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
* config/arm/types.md (mul64): Rename to...

@ -13417,7 +13417,7 @@ static const char *
aarch64_mangle_type (const_tree type)
{
/* The AArch64 ABI documents say that "__va_list" has to be
managled as if it is in the "std" namespace. */
mangled as if it is in the "std" namespace. */
if (lang_hooks.types_compatible_p (CONST_CAST_TREE (type), va_list_type))
return "St9__va_list";