From 1dca195e1c50d69fa4f0d18e821ec68f5d286df4 Mon Sep 17 00:00:00 2001 From: Chris Metcalf Date: Mon, 5 Jan 2015 11:59:32 -0500 Subject: lround: provide cast for wordsize-64 version if needed Platforms with 64-bit registers where 32-bit values need to have the high 32 bits set in a particular way need to have an explicit cast when using the 64-bit sysdeps/ieee754/dbl-64/wordsize-64 version of llround() as lround(). This includes tilegx32, and likely MIPS. x32 does not need this, and AArch64 ILP32 will not either. Require it to be specified in sysdep.h to be explicit. --- sysdeps/tile/sysdep.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'sysdeps/tile/sysdep.h') diff --git a/sysdeps/tile/sysdep.h b/sysdeps/tile/sysdep.h index ead9dba0b4..7b3d8739d2 100644 --- a/sysdeps/tile/sysdep.h +++ b/sysdeps/tile/sysdep.h @@ -108,3 +108,7 @@ #endif #endif /* __ASSEMBLER__ */ + +/* On tilegx, 32-bit values must have their high 32 bits sign extended; + random values are not allowed. */ +#define REGISTER_CAST_INT32_TO_INT64 1 -- cgit 1.4.1