OSDN Git Service

(overflow_warning): Fix typo in warning message.
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 13 Feb 1996 23:16:06 +0000 (23:16 +0000)
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 13 Feb 1996 23:16:06 +0000 (23:16 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@11268 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/c-common.c

index f87105d..b181a1c 100644 (file)
@@ -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");
     }
 }