diff options
author | Andrew Waterman <waterman@cs.berkeley.edu> | 2016-03-02 12:13:55 -0800 |
---|---|---|
committer | Andrew Waterman <waterman@cs.berkeley.edu> | 2016-03-02 12:14:43 -0800 |
commit | 89ba757daf6d6db1e2c0dce48e77bfb43dec5970 (patch) | |
tree | 1960a242f18fbcdf9101926da278c6c310acd23c /softfloat | |
parent | a95b44df9d142a49f3e1bfe4a60d259ed41ca247 (diff) | |
download | riscv-isa-sim-89ba757daf6d6db1e2c0dce48e77bfb43dec5970.zip riscv-isa-sim-89ba757daf6d6db1e2c0dce48e77bfb43dec5970.tar.gz riscv-isa-sim-89ba757daf6d6db1e2c0dce48e77bfb43dec5970.tar.bz2 |
Mark SoftFloat routines static inline
This avoids duplicate definitions on some platforms.
Diffstat (limited to 'softfloat')
-rw-r--r-- | softfloat/platform.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/softfloat/platform.h b/softfloat/platform.h index 3d9c431..03dd429 100644 --- a/softfloat/platform.h +++ b/softfloat/platform.h @@ -44,5 +44,5 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. /*---------------------------------------------------------------------------- *----------------------------------------------------------------------------*/ -#define INLINE extern inline +#define INLINE static inline |