mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 14:59:39 +02:00
Fix thinko in last change.
From-SVN: r22939
This commit is contained in:
@@ -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--;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user