diff options
author | Brendan Kehoe <brendan@cygnus.com> | 1999-10-31 19:41:33 +0000 |
---|---|---|
committer | Brendan Kehoe <brendan@gcc.gnu.org> | 1999-10-31 14:41:33 -0500 |
commit | 79f5f47f761945b6d6af8cd5bbdd3956f2336ecc (patch) | |
tree | d68d249f6c80e0c5d3a8e57cf9fae8fb90ce811f | |
parent | 31ec4e5e8a03e5d6cf5bf71fc14bb90eab0db3b0 (diff) | |
download | gcc-79f5f47f761945b6d6af8cd5bbdd3956f2336ecc.zip gcc-79f5f47f761945b6d6af8cd5bbdd3956f2336ecc.tar.gz gcc-79f5f47f761945b6d6af8cd5bbdd3956f2336ecc.tar.bz2 |
* cp-tree.h (flag_dump_translation_unit): Add decl.
From-SVN: r30293
-rw-r--r-- | gcc/cp/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cp/cp-tree.h | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index ab55f8f..25dd23d 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +1999-10-31 Brendan Kehoe <brendan@cygnus.com> + + * cp-tree.h (flag_dump_translation_unit): Add decl. + Sat Oct 30 22:42:50 1999 Stephen L Moshier <moshier@mediaone.net> * lex.c (yylex): Accept 'f' in mantissa of hex float constant. diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index 529fce4..b79242b 100644 --- a/gcc/cp/cp-tree.h +++ b/gcc/cp/cp-tree.h @@ -873,6 +873,11 @@ extern int warn_return_type; extern int flag_const_strings; +/* If non-NULL, dump the tree structure for the entire translation + unit to this file. */ + +extern char *flag_dump_translation_unit; + /* Nonzero means warn about deprecated conversion from string constant to `char *'. */ |