diff options
Diffstat (limited to 'gcc/ada/sem.adb')
-rw-r--r-- | gcc/ada/sem.adb | 87 |
1 files changed, 0 insertions, 87 deletions
diff --git a/gcc/ada/sem.adb b/gcc/ada/sem.adb index 503d1f40d43..352665af23f 100644 --- a/gcc/ada/sem.adb +++ b/gcc/ada/sem.adb @@ -91,15 +91,6 @@ package body Sem is -- of this unit, since they count as dependences on their parent library -- item. CU must be an N_Compilation_Unit whose Unit is not an N_Subunit. - procedure Write_Unit_Info - (Unit_Num : Unit_Number_Type; - Item : Node_Id; - Prefix : String := ""; - Withs : Boolean := False); - -- Print out debugging information about the unit. Prefix precedes the rest - -- of the printout. If Withs is True, we print out units with'ed by this - -- unit (not counting limited withs). - ------------- -- Analyze -- ------------- @@ -2290,82 +2281,4 @@ package body Sem is end loop; end Walk_Withs_Immediate; - --------------------- - -- Write_Unit_Info -- - --------------------- - - procedure Write_Unit_Info - (Unit_Num : Unit_Number_Type; - Item : Node_Id; - Prefix : String := ""; - Withs : Boolean := False) - is - begin - Write_Str (Prefix); - Write_Unit_Name (Unit_Name (Unit_Num)); - Write_Str (", unit "); - Write_Int (Int (Unit_Num)); - Write_Str (", "); - Write_Int (Int (Item)); - Write_Str ("="); - Write_Str (Node_Kind'Image (Nkind (Item))); - - if Item /= Original_Node (Item) then - Write_Str (", orig = "); - Write_Int (Int (Original_Node (Item))); - Write_Str ("="); - Write_Str (Node_Kind'Image (Nkind (Original_Node (Item)))); - end if; - - Write_Eol; - - -- Skip the rest if we're not supposed to print the withs - - if not Withs then - return; - end if; - - declare - Context_Item : Node_Id; - - begin - Context_Item := First (Context_Items (Cunit (Unit_Num))); - while Present (Context_Item) - and then (Nkind (Context_Item) /= N_With_Clause - or else Limited_Present (Context_Item)) - loop - Context_Item := Next (Context_Item); - end loop; - - if Present (Context_Item) then - Indent; - Write_Line ("withs:"); - Indent; - - while Present (Context_Item) loop - if Nkind (Context_Item) = N_With_Clause - and then not Limited_Present (Context_Item) - then - pragma Assert (Present (Library_Unit (Context_Item))); - Write_Unit_Name - (Unit_Name - (Get_Cunit_Unit_Number (Library_Unit (Context_Item)))); - - if Implicit_With (Context_Item) then - Write_Str (" -- implicit"); - end if; - - Write_Eol; - end if; - - Context_Item := Next (Context_Item); - end loop; - - Outdent; - Write_Line ("end withs"); - Outdent; - end if; - end; - end Write_Unit_Info; - end Sem; |