aboutsummaryrefslogtreecommitdiff
path: root/tccasm.c
diff options
context:
space:
mode:
Diffstat (limited to 'tccasm.c')
-rw-r--r--tccasm.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/tccasm.c b/tccasm.c
index 3097876..b5b2fff 100644
--- a/tccasm.c
+++ b/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;