mirror of git://gcc.gnu.org/git/gcc.git
parent
fed3e40834
commit
73532e4323
|
|
@ -2389,8 +2389,12 @@ output_file_directive (asm_file, input_name)
|
||||||
/* NA gets INPUT_NAME sans directory names. */
|
/* NA gets INPUT_NAME sans directory names. */
|
||||||
while (na > input_name)
|
while (na > input_name)
|
||||||
{
|
{
|
||||||
|
if (na[-1] == '/')
|
||||||
|
break;
|
||||||
|
#ifdef DIR_SEPARATOR
|
||||||
if (na[-1] == DIR_SEPARATOR)
|
if (na[-1] == DIR_SEPARATOR)
|
||||||
break;
|
break;
|
||||||
|
#endif
|
||||||
na--;
|
na--;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue