diff options
author | Bernhard Fischer <aldot@gcc.gnu.org> | 2007-12-15 16:25:41 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <aldot@gcc.gnu.org> | 2007-12-15 16:25:41 +0100 |
commit | 772cf0671a433e1618ff092cb84e1acbd6cc75e3 (patch) | |
tree | c39a22296dcd73a9b9ea2607d3eb4a067112e618 | |
parent | 6343804dec4580bce66d0656f28cab97c9205360 (diff) | |
download | gcc-772cf0671a433e1618ff092cb84e1acbd6cc75e3.zip gcc-772cf0671a433e1618ff092cb84e1acbd6cc75e3.tar.gz gcc-772cf0671a433e1618ff092cb84e1acbd6cc75e3.tar.bz2 |
toplev.c (process_options): Fix typo in warning.
2007-12-15 Bernhard Fischer <>
* toplev.c (process_options): Fix typo in warning.
From-SVN: r130953
-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 0875708d..87df41b 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 <jakub@redhat.com> PR target/29978 diff --git a/gcc/toplev.c b/gcc/toplev.c index c1520a3..63b387f 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; } |