From 62d8b51eb2d07e7fe20703aa379e25584a713409 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sun, 27 Jun 1993 18:48:22 -0400 Subject: [PATCH] (fold, case TRUTH_XOR_EXPR): End with `return', not `break'. From-SVN: r4770 --- 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 bc584356f64..827b2e42d8c 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -4029,7 +4029,7 @@ fold (expr) return non_lvalue (invert_truthvalue (arg1)); if (integer_onep (arg1)) return non_lvalue (invert_truthvalue (arg0)); - break; + return t; case EQ_EXPR: case NE_EXPR: -- 2.30.2