From: Jason Merrill Date: Tue, 30 Apr 1996 21:27:32 +0000 (+0000) Subject: (fold): Don't call convert to recreate tree nodes X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3ffcb234e7a78b7d46dd6474ae912a99ddce3c08;p=gcc.git (fold): Don't call convert to recreate tree nodes we already have. From-SVN: r11908 --- diff --git a/gcc/fold-const.c b/gcc/fold-const.c index 78da4fb6963..84438d7e9ae 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -5126,7 +5126,7 @@ fold (expr) appropriate. */ case CLEANUP_POINT_EXPR: if (! TREE_SIDE_EFFECTS (arg0)) - return convert (type, arg0); + return TREE_OPERAND (t, 0); { enum tree_code code0 = TREE_CODE (arg0);