Commit 73cd2468 by Robert Lipe Committed by Robert Lipe

tree.h (TYPE_CHECK): Make it clear to the preprocessor that we do not want macro…

tree.h (TYPE_CHECK): Make it clear to the preprocessor that we do not want macro replacement within...

	* tree.h (TYPE_CHECK): Make it clear to the preprocessor
	that we do not want macro replacement within a character constant.
	(TYPE_CHECK1): Likewise.

From-SVN: r25074
parent ad902c98
Sun Feb 7 22:18:42 1999 Robert Lipe <robertlipe@usa.net>
* tree.h (TYPE_CHECK): Make it clear to the preprocessor
that we do not want macro replacement within a character constant.
(TYPE_CHECK1): Likewise.
Sun Feb 7 15:37:10 1999 Jason Merrill <jason@yorick.cygnus.com>
* tree.h (DECL_P): New macro.
......
......@@ -327,8 +327,8 @@ struct tree_common
#include "tree-check.h"
#define TYPE_CHECK(t) DO_CHECK (tree_class_check, t, 't')
#define TYPE_CHECK1(t) DO_CHECK1 (tree_class_check, t, 't')
#define TYPE_CHECK(tree) DO_CHECK (tree_class_check, tree, 't')
#define TYPE_CHECK1(tree) DO_CHECK1 (tree_class_check, tree, 't')
#define DECL_CHECK(t) DO_CHECK (tree_class_check, t, 'd')
#define DECL_CHECK1(t) DO_CHECK1 (tree_class_check, t, 'd')
#define CST_CHECK(t) DO_CHECK (tree_class_check, t, 'c')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment