summaryrefslogtreecommitdiff
path: root/src/powerpc
diff options
context:
space:
mode:
authorAnthony Green <green@moxielogic.com>2013-03-16 08:18:45 -0400
committerAnthony Green <green@moxielogic.com>2013-03-16 08:18:45 -0400
commit4acf0056f55c757490dae6c29a65b0321327ea8a (patch)
treeaefcebc385df09cf11956fd0f81044d5f075fd84 /src/powerpc
parent675c9839224e4268187f1ec6f512127f9db555d0 (diff)
downloadlibffi-4acf0056f55c757490dae6c29a65b0321327ea8a.tar.gz
Build fix for soft-float power targets
Diffstat (limited to 'src/powerpc')
-rw-r--r--src/powerpc/ffi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/powerpc/ffi.c b/src/powerpc/ffi.c
index f3a96a1..54f2731 100644
--- a/src/powerpc/ffi.c
+++ b/src/powerpc/ffi.c
@@ -376,9 +376,9 @@ ffi_prep_args_SYSV (extended_cif *ecif, unsigned *const stack)
with the number found in ffi_prep_cif_machdep(). However, intarg_count
is incremeneted whenever we place an FP arg on the stack, so account for
that before our assert test. */
+#ifndef __NO_FPRS__
if (fparg_count > NUM_FPR_ARG_REGISTERS)
intarg_count -= fparg_count - NUM_FPR_ARG_REGISTERS;
-#ifndef __NO_FPRS__
FFI_ASSERT (fpr_base.u
<= stacktop.u - ASM_NEEDS_REGISTERS - NUM_GPR_ARG_REGISTERS);
#endif