aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2019-11-24 13:11:47 +0100
committerLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2019-11-28 01:06:34 +0100
commit3b7e1cffefb39feb9bb6b06e849eceac438f4d5e (patch)
tree8b8b89f3d7707dfd30b3134e35845f792718f3de
parentc5a34b42943dd3d6d3f1d3c64a2e0c9cd8158902 (diff)
downloadsparse-3b7e1cffefb39feb9bb6b06e849eceac438f4d5e.tar.gz
arch: add note for 128-bit long double on mips64
On mips64, the 'new' ABIS have 128-bit long doubles while the 'old' and the embedded ABIs use 64-bit. Add a note for this, since currently the -mabi flag is not handled. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
-rw-r--r--target.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/target.c b/target.c
index ebc7d493..6ea08c2f 100644
--- a/target.c
+++ b/target.c
@@ -121,6 +121,8 @@ void init_target(void)
break;
/* fall through */
case MACH_ARM:
+ case MACH_MIPS64:
+ // FIXME: ABI n32 & (n)64 have 128-bit ldouble
case MACH_MIPS32:
case MACH_S390:
case MACH_S390X: