From 9e1622ed25936c398428b23f352e4f1f55de5424 Mon Sep 17 00:00:00 2001 From: Paul Brook Date: Wed, 28 Apr 2004 13:25:59 +0000 Subject: calls.c (precompute_arguments): Remove PROMOTE_FOR_CALL_ONLY. * calls.c (precompute_arguments): Remove PROMOTE_FOR_CALL_ONLY. * function.c (assign_temp): Ditto. * system.h (PROMOTE_FOR_CALL_ONLY): Poison. From-SVN: r81247 --- gcc/function.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gcc/function.c') diff --git a/gcc/function.c b/gcc/function.c index 56a3814..69f9b8f 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -841,7 +841,7 @@ assign_temp (tree type_or_decl, int keep, int memory_required, { tree type, decl; enum machine_mode mode; -#ifndef PROMOTE_FOR_CALL_ONLY +#ifdef PROMOTE_MODE int unsignedp; #endif @@ -851,7 +851,7 @@ assign_temp (tree type_or_decl, int keep, int memory_required, decl = NULL, type = type_or_decl; mode = TYPE_MODE (type); -#ifndef PROMOTE_FOR_CALL_ONLY +#ifdef PROMOTE_MODE unsignedp = TYPE_UNSIGNED (type); #endif @@ -889,7 +889,7 @@ assign_temp (tree type_or_decl, int keep, int memory_required, return tmp; } -#ifndef PROMOTE_FOR_CALL_ONLY +#ifdef PROMOTE_MODE if (! dont_promote) mode = promote_mode (type, mode, &unsignedp, 0); #endif -- cgit v1.1