From 60e9e4b7a3610eadecd2bd3d92ca4bee4f968ae4 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Fri, 29 Apr 1994 22:28:22 +0000 Subject: [PATCH] (TYPE_DECL_SUPPRESS_DEBUG): new macro to support suppressing of detail type infos into stabs. From-SVN: r7183 --- gcc/tree.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/gcc/tree.h b/gcc/tree.h index d1d289231d0..5d50d38d7c5 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -861,6 +861,13 @@ struct tree_type do not allocate storage, and refer to a definition elsewhere. */ #define DECL_EXTERNAL(NODE) ((NODE)->decl.external_flag) +/* In a TYPE_DECL + nonzero means the detail info about this type is not dumped into stabs. + In stead, it will generate cross reference ('x') of names. + This uses the same flag as DECL_EXTERNAL. */ +#define TYPE_DECL_SUPPRESS_DEBUG(NODE) ((NODE)->decl.external_flag) + + /* In VAR_DECL and PARM_DECL nodes, nonzero means declared `register'. In LABEL_DECL nodes, nonzero means that an error message about jumping into such a binding contour has been printed for this label. */ -- 2.30.2