[backend-IRC]修复了现场管理与溢出处理的栈偏移量错误问题

This commit is contained in:
Lixuanwang
2025-08-03 14:42:19 +08:00
parent 004ef82488
commit 845f969c2e
5 changed files with 101 additions and 53 deletions

View File

@@ -60,11 +60,7 @@ display_file_content() {
# 清理临时文件的函数
clean_tmp() {
echo "正在清理临时目录: ${TMP_DIR}"
rm -rf "${TMP_DIR}"/*.s \
"${TMP_DIR}"/*_sysyc_riscv64 \
"${TMP_DIR}"/*_sysyc_riscv64.actual_out \
"${TMP_DIR}"/*_sysyc_riscv64.expected_stdout \
"${TMP_DIR}"/*_sysyc_riscv64.o
rm -rf "${TMP_DIR}"/*
echo "清理完成。"
}