aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/issues/pr61
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/issues/pr61')
-rwxr-xr-xtestsuite/issues/pr61/testsuite.sh17
-rw-r--r--testsuite/issues/pr61/vector.vhdl20
2 files changed, 0 insertions, 37 deletions
diff --git a/testsuite/issues/pr61/testsuite.sh b/testsuite/issues/pr61/testsuite.sh
deleted file mode 100755
index d7d94d6..0000000
--- a/testsuite/issues/pr61/testsuite.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-topdir=../..
-. $topdir/testenv.sh
-
-run_yosys -q -p "ghdl vector.vhdl -e vector; dump -o vector.il"
-
-#grep -q 0000000000000000000000000000000011111111111111111111111111111010 vector.il || exit 1
-grep -q 0000000011111111111111111111111111111111111111111111111100000000 vector.il || exit 1
-grep -q 1111111111111111111111111111111111111111111111111111111111111111 vector.il || exit 1
-grep -q 0000111111111111111111111111111111111111111111111111111111110000 vector.il || exit 1
-
-rm -f vector.il
-
-clean
-
-echo "OK"
diff --git a/testsuite/issues/pr61/vector.vhdl b/testsuite/issues/pr61/vector.vhdl
deleted file mode 100644
index 34274be..0000000
--- a/testsuite/issues/pr61/vector.vhdl
+++ /dev/null
@@ -1,20 +0,0 @@
-library ieee;
-use ieee.std_logic_1164.all;
-use ieee.numeric_std.all;
-
-entity vector is
- port (v: out signed(63 downto 0);
- u: out unsigned(63 downto 0));
-end vector;
-
-architecture synth of vector is
- signal v1 : signed (63 downto 0);
- signal u1 : unsigned (63 downto 0);
-
-begin
- v1 <= x"0ffffffffffffff0";
- v <= v1+(-1);
- u1 <= x"00ffffffffffff00";
--- u <= u1 + (-6); -- +4294967290;
- u <= u1 + 6;
-end synth;