From 3ffcb234e7a78b7d46dd6474ae912a99ddce3c08 Mon Sep 17 00:00:00 2001 From: Jason Merrill Date: Tue, 30 Apr 1996 21:27:32 +0000 Subject: [PATCH] (fold): Don't call convert to recreate tree nodes we already have. From-SVN: r11908 --- gcc/fold-const.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.30.2