From ded2825eb086493655d90b499c3dcf3abd9e5867 Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Mon, 13 Aug 2018 05:53:03 +0200 Subject: Add reprocedure for #634 --- testsuite/gna/issue634/top.vhdl | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 testsuite/gna/issue634/top.vhdl (limited to 'testsuite/gna/issue634/top.vhdl') diff --git a/testsuite/gna/issue634/top.vhdl b/testsuite/gna/issue634/top.vhdl new file mode 100644 index 000000000..0dd7a47a2 --- /dev/null +++ b/testsuite/gna/issue634/top.vhdl @@ -0,0 +1,15 @@ +use std.textio.all; + +entity top_ent is +end entity; + +architecture default of top_ent is + file fh : text; +begin + process + begin + if endfile(fh) then + null; + end if; + end process; +end architecture; -- cgit v1.2.3