diff options
Diffstat (limited to 'outcoff.c')
-rw-r--r-- | outcoff.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -285,7 +285,8 @@ static void coff_deflabel (char *name, long segment, long offset, int pos = strslen+4; struct Symbol *sym; - if (name[0] == '.' && name[1] == '.') { + if (name[0] == '.' && name[1] == '.' && name[2] != '@') { + error (ERR_NONFATAL, "unrecognised special symbol `%s'", name); return; } |