summaryrefslogtreecommitdiffstats
path: root/eval.tex
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2021-03-30 18:48:23 +0100
committerYann Herklotz <git@yannherklotz.com>2021-03-30 18:48:23 +0100
commit0f40e13fab830957ac055e076055280cdb82efff (patch)
tree45853a4552e3535f5ae8993a12d16537f984d23e /eval.tex
parent4eb24224015629936727e37f60738ac412578f50 (diff)
downloadfccm21_esrhls-0f40e13fab830957ac055e076055280cdb82efff.tar.gz
fccm21_esrhls-0f40e13fab830957ac055e076055280cdb82efff.zip
Fix use of test-case
Diffstat (limited to 'eval.tex')
-rw-r--r--eval.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.tex b/eval.tex
index 4ed8eac..f1543e4 100644
--- a/eval.tex
+++ b/eval.tex
@@ -74,7 +74,7 @@ int main() { a[0][1][0] = 1; }
%This shows that there is a bug in one of the compilation passes in LegUp, however, due to the assertion the bug is caught in the tool before it produces an incorrect design.
% The code initialises the array with zeroes except for \texttt{a[0][1][0]}, which is set to one. Then the main function assigns one to that same location. This code on its own should not actually produce a result and should just terminate by returning 0, which is also what the design that LegUp generates does when the \texttt{NO\_INLINE} flag is turned off.
-%The following code also produces an assertion error in LegUp, which is a different one this time. This bug was not discovered during the main test runs of 10 thousand test cases, but beforehand, which meant that we disabled unions from being generated. However, this bug also requires the \texttt{volatile} keyword which seems to be the reason for quite a few mismatches in LegUp and Vivado.
+%The following code also produces an assertion error in LegUp, which is a different one this time. This bug was not discovered during the main test runs of 10 thousand test-cases, but beforehand, which meant that we disabled unions from being generated. However, this bug also requires the \texttt{volatile} keyword which seems to be the reason for quite a few mismatches in LegUp and Vivado.
%
%\begin{minted}{c}
%union U1 { int a; };