Skip to content

Commit 18f66dd

Browse files
committed
Reverted workaround from 6aedc46.
1 parent ef8b83e commit 18f66dd

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/Simulate.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -307,9 +307,11 @@ jobs:
307307
}
308308
309309
if {$::osvvm::ToolName eq "GHDL"} {
310+
SetExtendedAnalyzeOptions {-frelaxed -Wno-specs -Wno-elaboration}
310311
SetExtendedSimulateOptions {-frelaxed -Wno-specs -Wno-binding}
311312
}
312313
if {$::osvvm::ToolName eq "NVC"} {
314+
SetExtendedAnalyzeOptions {--relaxed}
313315
}
314316
315317
build ../../tb/RunAllTests.pro

tb/arith/div/arith_div_Simple.vhdl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ begin
100100
WaitForClock(Clock);
101101
wait for 1 ns;
102102
Start <= '0';
103-
A <= (A'range => '-'); -- (others => '-'); WORKAROUND: NVC 1.18.2 Linux
104-
D <= (D'range => '-'); -- (others => '-');
103+
A <= (others => '-');
104+
D <= (others => '-');
105105
done := (others => false);
106106

107107
loop
@@ -136,8 +136,8 @@ begin
136136

137137
begin
138138
Start <= '0';
139-
A <= (A'range => '-'); -- (others => '-'); WORKAROUND: NVC 1.18.2 Linux
140-
D <= (D'range => '-'); -- (others => '-');
139+
A <= (others => '-');
140+
D <= (others => '-');
141141

142142
-- Initialize Random
143143
Random.InitSeed(Random'instance_name);

0 commit comments

Comments
 (0)