Skip to content

Commit

Permalink
Fix format warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Yen-Fu Chen committed Aug 14, 2023
1 parent d5bd874 commit a3e296f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/cache.c
Original file line number Diff line number Diff line change
Expand Up @@ -586,4 +586,4 @@ bool cache_hot(struct cache *cache, uint32_t key)
#endif
return false;
}
#endif
#endif
2 changes: 1 addition & 1 deletion src/compile.c
Original file line number Diff line number Diff line change
Expand Up @@ -535,4 +535,4 @@ uint8_t *block_compile(riscv_t *rv)
trace_and_gencode(rv, jit_code_string->code);
jit_code_string->code_size = strlen(jit_code_string->code);
return compile(rv);
}
}
2 changes: 1 addition & 1 deletion src/compile.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@

#include "riscv.h"

uint8_t *block_compile(riscv_t *rv);
uint8_t *block_compile(riscv_t *rv);
2 changes: 1 addition & 1 deletion src/riscv_private.h
Original file line number Diff line number Diff line change
Expand Up @@ -188,4 +188,4 @@ uint32_t csr_csrrs(riscv_t *rv, uint32_t csr, uint32_t val);
* Read value from rs1, use as bit mask to clear bits in CSR.
*/
uint32_t csr_csrrc(riscv_t *rv, uint32_t csr, uint32_t val);
#endif
#endif

0 comments on commit a3e296f

Please sign in to comment.