From 9e3b2fe375baa8b1a959892661e64766f32c613a Mon Sep 17 00:00:00 2001 From: Eric Botcazou Date: Mon, 4 Jan 2016 08:14:12 +0000 Subject: re PR target/69100 (ICE in final_scan_insn with -msoft-float and __builtin_apply) PR target/69100 * config/sparc/sparc.h (FUNCTION_ARG_REGNO_P): Return true in 64-bit mode for %f0-%f31 only if TARGET_FPU. From-SVN: r232050 --- gcc/config/sparc/sparc.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'gcc/config/sparc/sparc.h') diff --git a/gcc/config/sparc/sparc.h b/gcc/config/sparc/sparc.h index ae8e962..9fa2a5a 100644 --- a/gcc/config/sparc/sparc.h +++ b/gcc/config/sparc/sparc.h @@ -1176,9 +1176,8 @@ extern char leaf_reg_remap[]; On SPARC, these are the "output" registers. v9 also uses %f0-%f31. */ #define FUNCTION_ARG_REGNO_P(N) \ -(TARGET_ARCH64 \ - ? (((N) >= 8 && (N) <= 13) || ((N) >= 32 && (N) <= 63)) \ - : ((N) >= 8 && (N) <= 13)) + (((N) >= 8 && (N) <= 13) \ + || (TARGET_ARCH64 && TARGET_FPU && (N) >= 32 && (N) <= 63)) /* Define a data type for recording info about an argument list during the scan of that argument list. This data type should -- cgit v1.1