aboutsummaryrefslogtreecommitdiffstats
path: root/src/ghdldrv/ghdlprint.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2014-12-31 06:35:55 +0100
committerTristan Gingold <tgingold@free.fr>2014-12-31 06:35:55 +0100
commit032a613b864bd0ff4c632cfb8541203abf1f4e59 (patch)
tree485963e7bf92b8e8c3497721c3d1295a53e949f4 /src/ghdldrv/ghdlprint.adb
parentdfff5cae5a4b336ba0cf797f4122cfcace474736 (diff)
downloadghdl-032a613b864bd0ff4c632cfb8541203abf1f4e59.tar.gz
ghdl-032a613b864bd0ff4c632cfb8541203abf1f4e59.tar.bz2
ghdl-032a613b864bd0ff4c632cfb8541203abf1f4e59.zip
Rename name_table.name_buffer and name_length to avoid clash.
Diffstat (limited to 'src/ghdldrv/ghdlprint.adb')
-rw-r--r--src/ghdldrv/ghdlprint.adb14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/ghdldrv/ghdlprint.adb b/src/ghdldrv/ghdlprint.adb
index d4e0f5f8a..7917f7f88 100644
--- a/src/ghdldrv/ghdlprint.adb
+++ b/src/ghdldrv/ghdlprint.adb
@@ -602,17 +602,17 @@ package body Ghdlprint is
| Iir_Kind_Package_Declaration
| Iir_Kind_Package_Instantiation_Declaration =>
Image (Id);
- Append (Name_Buffer (1 .. Name_Length));
+ Append (Nam_Buffer (1 .. Nam_Length));
when Iir_Kind_Package_Body =>
Image (Id);
- Append (Name_Buffer (1 .. Name_Length));
+ Append (Nam_Buffer (1 .. Nam_Length));
Append ("-body");
when Iir_Kind_Architecture_Body =>
Image (Get_Entity_Identifier_Of_Architecture (Lib));
- Append (Name_Buffer (1 .. Name_Length));
+ Append (Nam_Buffer (1 .. Nam_Length));
Append ("-");
Image (Id);
- Append (Name_Buffer (1 .. Name_Length));
+ Append (Nam_Buffer (1 .. Nam_Length));
when others =>
raise Internal_Error;
end case;
@@ -1631,10 +1631,10 @@ package body Ghdlprint is
Dir := Get_Source_File_Directory (Cur_File);
if Dir /= Null_Identifier then
Image (Dir);
- Put (Name_Buffer (1 .. Name_Length));
+ Put (Nam_Buffer (1 .. Nam_Length));
end if;
Image (Get_File_Name (Cur_File));
- Put (Name_Buffer (1 .. Name_Length));
+ Put (Nam_Buffer (1 .. Nam_Length));
New_Line;
end if;
@@ -1696,7 +1696,7 @@ package body Ghdlprint is
null;
when others =>
Image (Get_Identifier (N));
- Put (Name_Buffer (1 .. Name_Length));
+ Put (Nam_Buffer (1 .. Nam_Length));
end case;
end Emit_Decl;