aboutsummaryrefslogtreecommitdiff
path: root/tccgen.c
diff options
context:
space:
mode:
Diffstat (limited to 'tccgen.c')
-rw-r--r--tccgen.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/tccgen.c b/tccgen.c
index adc5005..52541e2 100644
--- a/tccgen.c
+++ b/tccgen.c
@@ -3979,6 +3979,18 @@ ST_FUNC void unary(void)
vtop->type = type;
break;
}
+ case TOK___arm64_clear_cache: {
+ next();
+ skip('(');
+ expr_eq();
+ skip(',');
+ expr_eq();
+ skip(')');
+ gen_clear_cache();
+ vpushi(0);
+ vtop->type.t = VT_VOID;
+ break;
+ }
#endif
case TOK_INC: