[COMMITTED] ada: Remove redundant line in Analyze_Qualified_Expression
Commit Message
From: Eric Botcazou <ebotcazou@adacore.com>
The same statement is present a few lines above.
gcc/ada/
* sem_ch4.adb (Analyze_Qualified_Expression): Remove redundant
line.
Tested on x86_64-pc-linux-gnu, committed on master.
---
gcc/ada/sem_ch4.adb | 2 --
1 file changed, 2 deletions(-)
@@ -4389,8 +4389,6 @@ package body Sem_Ch4 is
end loop;
end if;
end if;
-
- Set_Etype (N, T);
end Analyze_Qualified_Expression;
-----------------------------------