https://gcc.gnu.org/g:936f9f1d159bd6ef3b1e25e72a6abd1c0fff10b1

commit r15-5691-g936f9f1d159bd6ef3b1e25e72a6abd1c0fff10b1
Author: Eric Botcazou <ebotca...@adacore.com>
Date:   Wed Nov 13 16:37:32 2024 +0100

    ada: Clean up previous change
    
    gcc/ada/ChangeLog:
    
            * sem_res.adb (Valid_Conversion): Do not initialize Opnd_Type before
            calling Get_Corresponding_Mutably_Tagged_Type_If_Present.

Diff:
---
 gcc/ada/sem_res.adb | 16 ++++++----------
 1 file changed, 6 insertions(+), 10 deletions(-)

diff --git a/gcc/ada/sem_res.adb b/gcc/ada/sem_res.adb
index 9cd1db1a9aa6..5ca206135295 100644
--- a/gcc/ada/sem_res.adb
+++ b/gcc/ada/sem_res.adb
@@ -13803,7 +13803,7 @@ package body Sem_Res is
       Report_Errs : Boolean := True) return Boolean
    is
       Target_Type  : constant Entity_Id := Base_Type (Target);
-      Opnd_Type    : Entity_Id          := Etype (Operand);
+      Opnd_Type    : Entity_Id;
       Inc_Ancestor : Entity_Id;
 
       function Conversion_Check
@@ -14270,14 +14270,10 @@ package body Sem_Res is
    begin
       Check_Parameterless_Call (Operand);
 
-      if Is_Overloaded (Operand) then
-         if Is_Ambiguous_Operand (Operand) then
-            return False;
-         end if;
-
-         --  The Etype may have been updated by Is_Ambiguous_Operand
-
-         Opnd_Type := Etype (Operand);
+      if Is_Overloaded (Operand)
+        and then Is_Ambiguous_Operand (Operand)
+      then
+         return False;
       end if;
 
       --  When we encounter a class-wide equivalent type used to represent
@@ -14285,7 +14281,7 @@ package body Sem_Res is
       --  at the class-wide mutably tagged type instead.
 
       Opnd_Type :=
-        Get_Corresponding_Mutably_Tagged_Type_If_Present (Opnd_Type);
+        Get_Corresponding_Mutably_Tagged_Type_If_Present (Etype (Operand));
 
       --  Deal with conversion of integer type to address if the pragma
       --  Allow_Integer_Address is in effect. We convert the conversion to

Reply via email to