From: Ulrich Weigand Date: Wed, 4 May 2011 12:43:05 +0000 (+0000) Subject: spu.c (spu_gimplify_va_arg_expr): Call pass_by_reference instead of spu_pass_by_refer... X-Git-Tag: releases/gcc-4.7.0~6987 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a207915ac392347e3dc926d6507caa48d2701aa3;p=thirdparty%2Fgcc.git spu.c (spu_gimplify_va_arg_expr): Call pass_by_reference instead of spu_pass_by_reference. * config/spu/spu.c (spu_gimplify_va_arg_expr): Call pass_by_reference instead of spu_pass_by_reference. From-SVN: r173372 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1f6d535c81e5..523dd67836d9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2011-05-04 Ulrich Weigand + + * config/spu/spu.c (spu_gimplify_va_arg_expr): Call pass_by_reference + instead of spu_pass_by_reference. + 2011-05-04 Andreas Krebbel * calls.c (emit_library_call_value_1): Invoke diff --git a/gcc/config/spu/spu.c b/gcc/config/spu/spu.c index f93c14c39d52..a6c76581b339 100644 --- a/gcc/config/spu/spu.c +++ b/gcc/config/spu/spu.c @@ -4245,8 +4245,8 @@ spu_gimplify_va_arg_expr (tree valist, tree type, gimple_seq * pre_p, /* if an object is dynamically sized, a pointer to it is passed instead of the object itself. */ - pass_by_reference_p = spu_pass_by_reference (NULL, TYPE_MODE (type), type, - false); + pass_by_reference_p = pass_by_reference (NULL, TYPE_MODE (type), type, + false); if (pass_by_reference_p) type = build_pointer_type (type); size = int_size_in_bytes (type);