Commit 7fe63418 by Danny Smith Committed by Danny Smith

sdbout.c (sdbout_symbol): Do not output type .def statements for builtin types.

	* sdbout.c (sdbout_symbol): Do not output type .def statements
	for builtin types.

From-SVN: r89911
parent 0a3ee0fd
2004-10-30 Danny Smith <dannysmith@users.sourceforge.net>
* sdbout.c (sdbout_symbol): Do not output type .def statements
for builtin types.
2004-10-30 Gabriel Dos Reis <gdr@integrable-solutions.net>
* c-common.c (catenate_strings): New.
......
......@@ -737,6 +737,11 @@ sdbout_symbol (tree decl, int local)
return;
if (DECL_IGNORED_P (decl))
return;
/* Don't output intrinsic types. GAS chokes on SDB .def
statements that contain identifiers with embedded spaces
(eg "unsigned long"). */
if (DECL_IS_BUILTIN (decl))
return;
/* Output typedef name. */
if (template_name_p (DECL_NAME (decl)))
......
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