Skip to content

Commit cc50a1f

Browse files
authored
Merge pull request #368 from visitorckw/fix-jit-compile-warning
Fix compile warning in JIT without RV32F/C
2 parents d511c1e + 7dd9af6 commit cc50a1f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tools/gen-jit-template.py

+8
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,12 @@
9595
"cadd",
9696
"cswsp",
9797
],
98+
"EXT_FC": [
99+
"cflwsp",
100+
"cfswsp",
101+
"cflw",
102+
"cfsw",
103+
],
98104
}
99105
EXT_LIST = ["Zifencei", "Zicsr", "EXT_M", "EXT_A", "EXT_F", "EXT_C"]
100106
SKIP_LIST = []
@@ -109,6 +115,8 @@ def parse_argv(EXT_LIST, SKIP_LIST):
109115
EXT_LIST.remove(ext)
110116
for ext in EXT_LIST:
111117
SKIP_LIST += INSN[ext]
118+
if "EXT_F" in EXT_LIST or "EXT_C" in EXT_LIST:
119+
SKIP_LIST += INSN["EXT_FC"]
112120

113121
parse_argv(EXT_LIST, SKIP_LIST)
114122
# prepare PROLOGUE

0 commit comments

Comments
 (0)