Commit 194ae3f6 by Zack Weinberg Committed by Zack Weinberg

cpphash.c (dump_hash_helper): Only dump nodes of type T_MACRO.

	* cpphash.c (dump_hash_helper): Only dump nodes of type
	T_MACRO.  Emit a newline after each definition.

From-SVN: r32518
parent c2952b01
2000-03-13 Zack Weinberg <zack@wolery.cumb.org>
* cpphash.c (dump_hash_helper): Only dump nodes of type
T_MACRO. Emit a newline after each definition.
2000-03-14 Martin v. Lwis <loewis@informatik.hu-berlin.de>
* gccbug.in: New file.
......
......@@ -1727,7 +1727,11 @@ dump_hash_helper (h, p)
HASHNODE *hp = (HASHNODE *)h;
cpp_reader *pfile = (cpp_reader *)p;
if (hp->type == T_MACRO)
{
_cpp_dump_definition (pfile, hp->name, hp->length, hp->value.defn);
CPP_PUTC (pfile, '\n');
}
return 1;
}
......
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