From 97471d8f5fe2ae5e17ae37af6f9945631a892214 Mon Sep 17 00:00:00 2001 From: Roger Sayle Date: Thu, 26 May 2005 04:38:51 +0000 Subject: [PATCH] convert.c (convert_to_integer): Avoid recursive call to convert_to_integer by building the NOP_EXPR directly. * convert.c (convert_to_integer) : Avoid recursive call to convert_to_integer by building the NOP_EXPR directly. From-SVN: r100184 --- gcc/ChangeLog | 5 +++++ gcc/convert.c | 15 ++++++++------- 2 files changed, 13 insertions(+), 7 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f9d1cb795a0..a4037339c6e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-05-25 Roger Sayle + + * convert.c (convert_to_integer) : Avoid recursive + call to convert_to_integer by building the NOP_EXPR directly. + 2005-05-25 Richard Sandiford * config/rs6000/rs6000.opt (mprioritize-restricted-insns=): Fix typo. diff --git a/gcc/convert.c b/gcc/convert.c index 97705a2926a..fbd18dee23e 100644 --- a/gcc/convert.c +++ b/gcc/convert.c @@ -411,13 +411,14 @@ convert_to_integer (tree type, tree expr) case POINTER_TYPE: case REFERENCE_TYPE: if (integer_zerop (expr)) - expr = integer_zero_node; - else - expr = fold (build1 (CONVERT_EXPR, - lang_hooks.types.type_for_size (POINTER_SIZE, 0), - expr)); - - return convert_to_integer (type, expr); + return build_int_cst (type, 0); + + /* Convert to an unsigned integer of the correct width first, + and from there widen/truncate to the required type. */ + expr = fold_build1 (CONVERT_EXPR, + lang_hooks.types.type_for_size (POINTER_SIZE, 0), + expr); + return fold_build1 (NOP_EXPR, type, expr); case INTEGER_TYPE: case ENUMERAL_TYPE: -- 2.30.2