Fix thinko in last change.
From-SVN: r22939
This commit is contained in:
parent
fed3e40834
commit
73532e4323
1 changed files with 4 additions and 0 deletions
|
@ -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--;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue