aboutsummaryrefslogtreecommitdiffstats
path: root/src/ghdldrv/ghdllocal.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/ghdldrv/ghdllocal.adb')
-rw-r--r--src/ghdldrv/ghdllocal.adb9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/ghdldrv/ghdllocal.adb b/src/ghdldrv/ghdllocal.adb
index 52777ff26..2a231d693 100644
--- a/src/ghdldrv/ghdllocal.adb
+++ b/src/ghdldrv/ghdllocal.adb
@@ -461,18 +461,15 @@ package body Ghdllocal is
Put ("???");
return;
end case;
- Image (Id);
- Put (Nam_Buffer (1 .. Nam_Length));
+ Put (Image (Id));
case Get_Kind (Unit) is
when Iir_Kind_Architecture_Body =>
Put (" of ");
- Image (Get_Entity_Identifier_Of_Architecture (Unit));
- Put (Nam_Buffer (1 .. Nam_Length));
+ Put (Image (Get_Entity_Identifier_Of_Architecture (Unit)));
when Iir_Kind_Configuration_Declaration =>
if Id = Null_Identifier then
Put ("<default> of entity ");
- Image (Get_Entity_Identifier_Of_Architecture (Unit));
- Put (Nam_Buffer (1 .. Nam_Length));
+ Put (Image (Get_Entity_Identifier_Of_Architecture (Unit)));
end if;
when others =>
null;