aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorArtemiy Granat <a.granat@ispras.ru>2025-07-24 18:38:27 +0300
committerAlexander Monakov <amonakov@ispras.ru>2025-07-31 15:47:36 +0300
commitdf82965344f641c17a2df4bd7c195df9e980312b (patch)
tree6a8b78739c8388d1bf973db1ddc41a41995dc817 /gcc
parent3b146853a3e8ca9f087d83173696fdcd332115e4 (diff)
downloadgcc-df82965344f641c17a2df4bd7c195df9e980312b.zip
gcc-df82965344f641c17a2df4bd7c195df9e980312b.tar.gz
gcc-df82965344f641c17a2df4bd7c195df9e980312b.tar.bz2
i386: Fix typo in diagnostic about simultaneous regparm and thiscall use
gcc/ChangeLog: * config/i386/i386-options.cc (ix86_handle_cconv_attribute): Fix typo.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/i386/i386-options.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/i386/i386-options.cc b/gcc/config/i386/i386-options.cc
index 4ad209e..09a35ef 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);