From: Bernhard Fischer Date: Sat, 15 Dec 2007 15:25:41 +0000 (+0100) Subject: toplev.c (process_options): Fix typo in warning. X-Git-Tag: releases/gcc-4.3.0~976 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=772cf0671a433e1618ff092cb84e1acbd6cc75e3;p=thirdparty%2Fgcc.git toplev.c (process_options): Fix typo in warning. 2007-12-15 Bernhard Fischer <> * toplev.c (process_options): Fix typo in warning. From-SVN: r130953 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0875708d2b71..87df41bbf29c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2007-12-15 Bernhard Fischer <> + + * toplev.c (process_options): Fix typo in warning. + 2007-12-14 Jakub Jelinek PR target/29978 diff --git a/gcc/toplev.c b/gcc/toplev.c index c1520a37e54a..63b387f0934e 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -2016,7 +2016,7 @@ process_options (void) if (flag_unwind_tables && !ACCUMULATE_OUTGOING_ARGS && flag_omit_frame_pointer) { - warning (0, "unwind tables currently requires a frame pointer " + warning (0, "unwind tables currently require a frame pointer " "for correctness"); flag_omit_frame_pointer = 0; }