From: Piotr Trojanek Date: Wed, 20 Jan 2021 16:41:09 +0000 (+0100) Subject: [Ada] Remove repeated calls in Resolve_Range X-Git-Tag: basepoints/gcc-13~7765 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a86fbc250c5a6c6d5ae408166ef440f6c0f65df7;p=thirdparty%2Fgcc.git [Ada] Remove repeated calls in Resolve_Range gcc/ada/ * sem_res.adb (First_Last_Ref): Simplify "if [condition] then return True" in "return [condition]". (Resolve_Range): Remove calls appearing in IF condition from the THEN statements. --- diff --git a/gcc/ada/sem_res.adb b/gcc/ada/sem_res.adb index 88d294efefb6..d2819e4c437b 100644 --- a/gcc/ada/sem_res.adb +++ b/gcc/ada/sem_res.adb @@ -10542,12 +10542,9 @@ package body Sem_Res is PL : constant Node_Id := Prefix (Lorig); PH : constant Node_Id := Prefix (Horig); begin - if Is_Entity_Name (PL) + return Is_Entity_Name (PL) and then Is_Entity_Name (PH) - and then Entity (PL) = Entity (PH) - then - return True; - end if; + and then Entity (PL) = Entity (PH); end; end if; @@ -10616,11 +10613,11 @@ package body Sem_Res is if Is_Discrete_Type (Typ) and then Expander_Active then if Is_OK_Static_Expression (L) then - Fold_Uint (L, Expr_Value (L), Is_OK_Static_Expression (L)); + Fold_Uint (L, Expr_Value (L), Static => True); end if; if Is_OK_Static_Expression (H) then - Fold_Uint (H, Expr_Value (H), Is_OK_Static_Expression (H)); + Fold_Uint (H, Expr_Value (H), Static => True); end if; end if; end Resolve_Range;