aboutsummaryrefslogtreecommitdiffstats
path: root/src/files_map.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/files_map.adb')
-rw-r--r--src/files_map.adb8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/files_map.adb b/src/files_map.adb
index b7cc795a1..3ca45260c 100644
--- a/src/files_map.adb
+++ b/src/files_map.adb
@@ -1181,6 +1181,7 @@ package body Files_Map is
declare
F : Source_File_Record renames Source_Files.Table(I);
begin
+ Put ('*');
Put (Source_File_Entry'Image (I));
Put (" name: " & Image (F.File_Name));
Put (" dir:" & Image (F.Directory));
@@ -1199,8 +1200,13 @@ package body Files_Map is
Put (" lines_table_max:"
& Natural'Image (F.Lines_Table_Max));
New_Line;
- when others =>
+ when Source_File_String =>
null;
+ when Source_File_Instance =>
+ Put (" instance from:" & Source_File_Entry'Image (F.Ref));
+ Put (", base:" & Source_File_Entry'Image (F.Base));
+ Put (", loc:" & Image (F.Instance_Loc));
+ New_Line;
end case;
end;
end loop;