Commit 83ebfdc0 by Andreas Schwab Committed by Andreas Schwab

ia64.c (ia64_hpux_asm_file_end): Fix typo in last change and some warnings.

	* config/ia64/ia64.c (ia64_hpux_asm_file_end): Fix typo in last
	change and some warnings.

From-SVN: r60073
parent 299c5111
2002-12-12 Andreas Schwab <schwab@suse.de>
* config/ia64/ia64.c (ia64_hpux_asm_file_end): Fix typo in last
change and some warnings.
2002-12-12 Kazu Hirata <kazu@cs.umass.edu>
* doc/md.texi (pushm): Fix a typo.
......
......@@ -8141,13 +8141,14 @@ ia64_hpux_asm_file_end (file)
{
while (extern_func_head)
{
char *real_name;
const char *real_name;
tree decl;
real_name = (* targetm.strip_name_encoding) (extern_func_head->name);
tree decl = maybe_get_identifier (real_name);
decl = maybe_get_identifier (real_name);
if (!decl || ! TREE_ASM_WRITTEN (decl) && TREE_SYMBOL_REFERENCED (decl))
if (!decl
|| (! TREE_ASM_WRITTEN (decl) && TREE_SYMBOL_REFERENCED (decl)))
{
if (decl)
TREE_ASM_WRITTEN (decl) = 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