Commit 2c561874 by Jason Merrill Committed by Jason Merrill

tlink.c (read_repo_files): Don't look for .rpo info for linker flags.

	* tlink.c (read_repo_files): Don't look for .rpo info for
	linker flags.

From-SVN: r32978
parent 9b4f640b
2000-04-06 Jason Merrill <jason@yorick.cygnus.com>
* tlink.c (read_repo_files): Don't look for .rpo info for
linker flags.
Thu Apr 6 20:39:26 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
* sh.h (STRUCT_VALUE, RETURN_IN_MEMORY): Define.
......
......@@ -550,9 +550,15 @@ read_repo_files (object_lst)
for (; *object; object++)
{
const char *p = frob_extension (*object, ".rpo");
const char *p;
file *f;
/* Don't bother trying for ld flags. */
if (*object[0] == '-')
continue;
p = frob_extension (*object, ".rpo");
if (! file_exists (p))
continue;
......
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