From: Kyrylo Tkachov Date: Mon, 26 Nov 2018 17:51:58 +0000 (+0000) Subject: [AArch64][committed] Fix typo in aarch64_mangle_type X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=17f8ace20e0dd5459dc54681fed423126bb52d44;p=gcc.git [AArch64][committed] Fix typo in aarch64_mangle_type * config/aarch64/aarch64.c (aarch64_mangle_type): Fix typo in comment. From-SVN: r266472 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f98017b29e3..9cffba982b8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2018-11-26 Kyrylo Tkachov + + * config/aarch64/aarch64.c (aarch64_mangle_type): Fix typo in comment. + 2018-11-26 Kyrylo Tkachov * config/arm/types.md (mul64): Rename to... diff --git a/gcc/config/aarch64/aarch64.c b/gcc/config/aarch64/aarch64.c index 90bbc578f1a..496cf7117ad 100644 --- a/gcc/config/aarch64/aarch64.c +++ b/gcc/config/aarch64/aarch64.c @@ -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";