diff options
author | Benno Schulenberg <bensberg@justemail.net> | 2015-04-11 12:08:26 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@gcc.gnu.org> | 2015-04-11 12:08:26 +0000 |
commit | 7106478c036641cc0e1b504ae42399a5d4ac3dc1 (patch) | |
tree | 8e3232837402986cf926337b58825d00db93afec /gcc | |
parent | 055da6a8dfc48dae017dd17bdabaeabf57bec3d7 (diff) | |
download | gcc-7106478c036641cc0e1b504ae42399a5d4ac3dc1.zip gcc-7106478c036641cc0e1b504ae42399a5d4ac3dc1.tar.gz gcc-7106478c036641cc0e1b504ae42399a5d4ac3dc1.tar.bz2 |
gcov.c (find_source): Fix miswording in error message.
* gcov.c (find_source): Fix miswording in error message.
* config/i386/i386.c (ix86_handle_cconv_attribute): Likewise.
(ix86_expand_sse_comi_round): Fix typo in error message.
From-SVN: r222007
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 4 | ||||
-rw-r--r-- | gcc/gcov.c | 2 |
3 files changed, 9 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index db56291..f60500a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2015-04-11 Benno Schulenberg <bensberg@justemail.net> + + * gcov.c (find_source): Fix miswording in error message. + * config/i386/i386.c (ix86_handle_cconv_attribute): Likewise. + (ix86_expand_sse_comi_round): Fix typo in error message. + 2015-04-11 Gerald Pfeifer <gerald@pfeifer.com> * doc/contrib.texi (Contributors): Add Laurynas Biveinis. diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index a0b543a..110ec4a 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -5649,7 +5649,7 @@ ix86_handle_cconv_attribute (tree *node, tree name, else if (is_attribute_p ("thiscall", name)) { if (TREE_CODE (*node) != METHOD_TYPE && pedantic) - warning (OPT_Wattributes, "%qE attribute is used for none class-method", + warning (OPT_Wattributes, "%qE attribute is used for non-class method", name); if (lookup_attribute ("stdcall", TYPE_ATTRIBUTES (*node))) { @@ -37672,7 +37672,7 @@ ix86_expand_sse_comi_round (const struct builtin_description *d, } if (INTVAL (op2) < 0 || INTVAL (op2) >= 32) { - error ("incorect comparison mode"); + error ("incorrect comparison mode"); return const0_rtx; } @@ -1141,7 +1141,7 @@ find_source (const char *file_name) if (!info_emitted) { fnotice (stderr, - "(the message is only displayed one per source file)\n"); + "(the message is displayed only once per source file)\n"); info_emitted = 1; } sources[idx].file_time = 0; |