From 0239133488f9ed867f01a1b006e75da430d59842 Mon Sep 17 00:00:00 2001 From: Ekaitz Zarraga Date: Sat, 23 Mar 2024 12:32:32 +0100 Subject: [PATCH] fixup! riscv: Add .option assembly directive (unimp) --- tccasm.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tccasm.c b/tccasm.c index 0f518fe7..d1c48e8c 100644 --- a/tccasm.c +++ b/tccasm.c @@ -927,6 +927,8 @@ static void asm_parse_directive(TCCState *s1, int global) case TOK_ASMDIR_option: next(); switch(tok){ + case TOK_ASM_rvc: /* Will be deprecated soon in favor of arch */ + case TOK_ASM_norvc: /* Will be deprecated soon in favor of arch */ case TOK_ASM_pic: case TOK_ASM_nopic: case TOK_ASM_relax: -- 2.11.4.GIT