diff options
author | Andrew Macleod <amacleod@gcc.gnu.org> | 1998-02-10 12:31:55 +0000 |
---|---|---|
committer | Andrew Macleod <amacleod@gcc.gnu.org> | 1998-02-10 12:31:55 +0000 |
commit | 5bd179053b6d6b706b70ab650bc4ca90541a0cca (patch) | |
tree | 20ba2ff1372223619025aae544a692d484011a0c | |
parent | 1d9ffce9c5e5764aafc22922212ea2bd7408d1df (diff) | |
download | gcc-5bd179053b6d6b706b70ab650bc4ca90541a0cca.zip gcc-5bd179053b6d6b706b70ab650bc4ca90541a0cca.tar.gz gcc-5bd179053b6d6b706b70ab650bc4ca90541a0cca.tar.bz2 |
Add declaration for flag_do_squangling.
From-SVN: r17830
-rw-r--r-- | gcc/cp/cp-tree.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index 6973e66..c934196 100644 --- a/gcc/cp/cp-tree.h +++ b/gcc/cp/cp-tree.h @@ -319,6 +319,11 @@ extern int name_mangling_version; /* Nonzero means that guiding declarations are allowed. */ extern int flag_guiding_decls; +/* Nonzero if squashed mangling is to be performed. + This uses the B and K codes to reference previously seen class types + and class qualifiers. */ +extern int flag_do_squangling; + /* C++ language-specific tree codes. */ #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) SYM, |