Commit 73532e43 by Jeff Law

Fix thinko in last change.

From-SVN: r22939
parent fed3e408
......@@ -2389,8 +2389,12 @@ output_file_directive (asm_file, input_name)
/* NA gets INPUT_NAME sans directory names. */
while (na > input_name)
{
if (na[-1] == '/')
break;
#ifdef DIR_SEPARATOR
if (na[-1] == DIR_SEPARATOR)
break;
#endif
na--;
}
......
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