aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/synth-static_oper.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2021-04-16 06:50:16 +0200
committerTristan Gingold <tgingold@free.fr>2021-04-16 06:58:04 +0200
commit2cd953d9b01cd9faf94bc66a466cb640485946f8 (patch)
tree0a8114abf2225b2a0dfdf3149e7376e4f34902e5 /src/synth/synth-static_oper.adb
parent17fe76dff5ac755c6d3162bdd21c49508ada566e (diff)
downloadghdl-2cd953d9b01cd9faf94bc66a466cb640485946f8.tar.gz
ghdl-2cd953d9b01cd9faf94bc66a466cb640485946f8.tar.bz2
ghdl-2cd953d9b01cd9faf94bc66a466cb640485946f8.zip
synth: refactoring (synth.files_operations -> synth.vhdl_files)
Diffstat (limited to 'src/synth/synth-static_oper.adb')
-rw-r--r--src/synth/synth-static_oper.adb4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/synth/synth-static_oper.adb b/src/synth/synth-static_oper.adb
index dca886777..80ec64b76 100644
--- a/src/synth/synth-static_oper.adb
+++ b/src/synth/synth-static_oper.adb
@@ -32,7 +32,7 @@ with Synth.Expr; use Synth.Expr;
with Synth.Vhdl_Oper;
with Synth.Ieee.Std_Logic_1164; use Synth.Ieee.Std_Logic_1164;
with Synth.Ieee.Numeric_Std; use Synth.Ieee.Numeric_Std;
-with Synth.Files_Operations;
+with Synth.Vhdl_Files;
with Synth.Values; use Synth.Values;
package body Synth.Static_Oper is
@@ -847,7 +847,7 @@ package body Synth.Static_Oper is
declare
Res : Boolean;
begin
- Res := Synth.Files_Operations.Endfile (Param1.Val.File, Expr);
+ Res := Synth.Vhdl_Files.Endfile (Param1.Val.File, Expr);
return Create_Memory_U8 (Boolean'Pos (Res), Boolean_Type);
end;