aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue293/repro.vhdl
blob: 1e12d6d7e9b96932cf37be26858b1ea1baec6d7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
library ieee;
use ieee.float_pkg.all;

entity tb_test is
  generic (
    runner_cfg : string := "h");
end tb_test;

architecture tb of tb_test is
begin
  test_runner : process
      --  Makes the implicit "=" directly visible.
      alias fp32 is float32;
    begin
      assert not (zerofp = neg_zerofp) severity failure;

      wait;
    end process test_runner;

    test_runner2 : process
        --  Only the user-defined "=" is visible.
    begin
      assert zerofp = neg_zerofp severity failure;

      wait;
    end process test_runner2;
end;