From: Richard Kenner Date: Tue, 13 Feb 1996 23:16:06 +0000 (-0500) Subject: (overflow_warning): Fix typo in warning message. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f33f79c0fdbc5eded8e50cfc32b8b5991a688dcd;p=gcc.git (overflow_warning): Fix typo in warning message. From-SVN: r11268 --- diff --git a/gcc/c-common.c b/gcc/c-common.c index f87105d1e20..b181a1c76b3 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -1357,7 +1357,7 @@ overflow_warning (value) && TREE_OVERFLOW (value)) { TREE_OVERFLOW (value) = 0; - warning ("floating-pointer overflow in expression"); + warning ("floating point overflow in expression"); } }