lib-xref-spark_specific.adb (Add_SPARK_Xrefs): Remove dead check for empty entities.
authorPiotr Trojanek <trojanek@adacore.com>
Wed, 8 Nov 2017 15:38:51 +0000 (15:38 +0000)
committerPierre-Marie de Rodat <pmderodat@gcc.gnu.org>
Wed, 8 Nov 2017 15:38:51 +0000 (15:38 +0000)
2017-11-08  Piotr Trojanek  <trojanek@adacore.com>

* lib-xref-spark_specific.adb (Add_SPARK_Xrefs): Remove dead check for
empty entities.

From-SVN: r254535

gcc/ada/lib-xref-spark_specific.adb

index c3bad8d..4837718 100644 (file)
@@ -657,7 +657,6 @@ package body SPARK_Specific is
       Prev_Loc   : Source_Ptr;
       Prev_Typ   : Character;
       Ref_Count  : Nat;
-      Ref_Name   : String_Ptr;
       Scope_Id   : Scope_Index;
 
    --  Start of processing for Add_SPARK_Xrefs
@@ -818,10 +817,6 @@ package body SPARK_Specific is
                pragma Assert (Scope_Id <= SPARK_Scope_Table.Last);
             end loop;
 
-            if Present (Ref.Ent) then
-               Ref_Name := new String'(Unique_Name (Ref.Ent));
-            end if;
-
             if Ref.Ent = Heap then
                Line := 0;
                Col  := 0;
@@ -845,7 +840,7 @@ package body SPARK_Specific is
             end if;
 
             SPARK_Xref_Table.Append (
-              (Entity_Name => Ref_Name,
+              (Entity_Name => new String'(Unique_Name (Ref.Ent)),
                Entity_Line => Line,
                Etype       => Get_Entity_Type (Ref.Ent),
                Entity_Col  => Col,