tccasm: Detect (but ignore) .ident directive
tcc is now able to compile many asm files generated by gcc -- By by ... Detlef
This commit is contained in:
parent
558258a301
commit
a135dd50c6
2 changed files with 19 additions and 0 deletions
18
tccasm.c
18
tccasm.c
|
@ -555,6 +555,24 @@ static void asm_parse_directive(TCCState *s1)
|
|||
next();
|
||||
}
|
||||
break;
|
||||
case TOK_ASM_ident:
|
||||
{
|
||||
char ident[256];
|
||||
|
||||
ident[0] = '\0';
|
||||
next();
|
||||
|
||||
if (tok == TOK_STR)
|
||||
pstrcat(ident, sizeof(ident), tokc.cstr->data);
|
||||
else
|
||||
pstrcat(ident, sizeof(ident), get_tok_str(tok, NULL));
|
||||
|
||||
if (s1->warn_unsupported)
|
||||
warning("ignoring .ident %s", ident);
|
||||
|
||||
next();
|
||||
}
|
||||
break;
|
||||
case TOK_ASM_size:
|
||||
{
|
||||
Sym *sym;
|
||||
|
|
1
tcctok.h
1
tcctok.h
|
@ -252,6 +252,7 @@
|
|||
DEF_ASM(file)
|
||||
DEF_ASM(globl)
|
||||
DEF_ASM(global)
|
||||
DEF_ASM(ident)
|
||||
DEF_ASM(size)
|
||||
DEF_ASM(type)
|
||||
DEF_ASM(text)
|
||||
|
|
Loading…
Reference in a new issue