From: Artemiy Granat Date: Thu, 24 Jul 2025 15:38:27 +0000 (+0300) Subject: i386: Fix typo in diagnostic about simultaneous regparm and thiscall use X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=df82965344f641c17a2df4bd7c195df9e980312b;p=thirdparty%2Fgcc.git i386: Fix typo in diagnostic about simultaneous regparm and thiscall use gcc/ChangeLog: * config/i386/i386-options.cc (ix86_handle_cconv_attribute): Fix typo. --- diff --git a/gcc/config/i386/i386-options.cc b/gcc/config/i386/i386-options.cc index 4ad209e5763..09a35ef6298 100644 --- a/gcc/config/i386/i386-options.cc +++ b/gcc/config/i386/i386-options.cc @@ -3639,7 +3639,7 @@ ix86_handle_cconv_attribute (tree *node, tree name, tree args, int, if (lookup_attribute ("thiscall", TYPE_ATTRIBUTES (*node))) { - error ("regparam and thiscall attributes are not compatible"); + error ("regparm and thiscall attributes are not compatible"); } cst = TREE_VALUE (args);