From 43a5a54258c634de80ca2eeeafb31a949448f322 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Sat, 30 Jan 1993 23:46:58 +0000 Subject: [PATCH] * (build_compound_expr): insert missing return From-SVN: r3394 --- gcc/c-typeck.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index 98a3c9ec967..99a72d368bc 100644 --- a/gcc/c-typeck.c +++ b/gcc/c-typeck.c @@ -3635,7 +3635,7 @@ tree build_compound_expr (list) tree list; { - internal_build_compound_expr (list, TRUE); + return internal_build_compound_expr (list, TRUE); } static tree -- 2.30.2