Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove unused 'isnanf' and 'isinff' functions
The introduction of SoftFloat for F extension implementation renders 'isnanf' and 'isinff' functions unnecessary. These functions were causing compilation warnings due to being unused. The commit addresses the following warnings: src/emulate.c:18:19: warning: unused function 'isinff' [-Wunused-function] static inline int isinff(float x) ^ src/emulate.c:22:19: warning: unused function 'isnanf' [-Wunused-function] static inline int isnanf(float x) ^ 2 warnings generated. This removal eliminates the redundant functions, ensuring a cleaner codebase and resolving the compilation warnings.
- Loading branch information
45bf7e2
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Benchmarks
Dhrystone
1567
Average DMIPS over 10 runs1736.33
Average DMIPS over 10 runs1.11
Coremark
1149.915
Average iterations/sec over 10 runs1478.631
Average iterations/sec over 10 runs1.29
This comment was automatically generated by workflow using github-action-benchmark.