Fix thinko in last change.

From-SVN: r22939
This commit is contained in:
Jeff Law 1998-10-08 15:22:45 -06:00
parent fed3e40834
commit 73532e4323

View File

@ -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--;
}