mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-28 00:24:38 +08:00
Fix thinko in last change.
From-SVN: r22939
This commit is contained in:
parent
fed3e40834
commit
73532e4323
@ -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…
Reference in New Issue
Block a user