OSDN Git Service

(id_clash_len): Now unsigned.
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 27 Feb 1994 20:18:57 +0000 (20:18 +0000)
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 27 Feb 1994 20:18:57 +0000 (20:18 +0000)
(warn_larger_than, larger_than_size): New variables.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@6651 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/flags.h

index 5e2d9d2..128b27f 100644 (file)
@@ -1,5 +1,5 @@
 /* Compilation switch flag definitions for GNU CC.
-   Copyright (C) 1987, 1988 Free Software Foundation, Inc.
+   Copyright (C) 1987, 1988, 1994 Free Software Foundation, Inc.
 
 This file is part of GNU CC.
 
@@ -109,7 +109,14 @@ extern int warn_template_debugging;
    characters.  The value N is in `id_clash_len'.  */
 
 extern int warn_id_clash;
-extern int id_clash_len;
+extern unsigned id_clash_len;
+
+/* Nonzero means warn about any objects definitions whose size is larger
+   than N bytes.  Also want about function definitions whose returned
+   values are larger than N bytes. The value N is in `larger_than_size'.  */
+
+extern int warn_larger_than;
+extern unsigned larger_than_size;
 
 /* Warn if a function returns an aggregate,
    since there are often incompatible calling conventions for doing this.  */