From 71c2d27705fafeacfcf04fac554925328cd01fbb Mon Sep 17 00:00:00 2001 From: acqn Date: Mon, 20 Jul 2020 07:36:14 +0800 Subject: [PATCH] Removed an ED_IsBitField() test according to PR review. --- src/cc65/typeconv.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/cc65/typeconv.c b/src/cc65/typeconv.c index 3bc7d47cb..e915d7392 100644 --- a/src/cc65/typeconv.c +++ b/src/cc65/typeconv.c @@ -169,9 +169,7 @@ ExitPoint: ReplaceType (Expr, NewType); /* Bit-fields are converted to integers */ - if (ED_IsBitField (Expr)) { - ED_DisBitField (Expr); - } + ED_DisBitField (Expr); }