diff options
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/toplev.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ae8cad32240..8b6fc68dbef 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2011-12-22 Joey Ye <joey.ye@arm.com> + + * toplev.c (process_options): Fix typo. + 2011-12-22 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> PR middle-end/51252 diff --git a/gcc/toplev.c b/gcc/toplev.c index efce98fa30f..f2ca43490ae 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -1332,7 +1332,7 @@ process_options (void) if (flag_strict_volatile_bitfields > 0 && !abi_version_at_least (2)) { - warning (0, "-fstrict-volatile-bitfield disabled; " + warning (0, "-fstrict-volatile-bitfields disabled; " "it is incompatible with ABI versions < 2"); flag_strict_volatile_bitfields = 0; } |

