Commit 9c5b50b3 by Jason Merrill

tlink.c (scan_linker_output): Skip the initial underscore in a mangled name if appropriate.

	* tlink.c (scan_linker_output): Skip the initial underscore in
	a mangled name if appropriate.

From-SVN: r29083
parent eb898ce4
......@@ -654,7 +654,11 @@ scan_linker_output (fname)
if (dem)
sym = symbol_hash_lookup (dem->mangled, false);
else
sym = symbol_hash_lookup (p, false);
{
if (*p == '_' && prepends_underscore)
++p;
sym = symbol_hash_lookup (p, false);
}
}
}
......
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