summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAlasdair Armstrong2017-10-06 17:56:30 +0100
committerAlasdair Armstrong2017-10-06 17:56:30 +0100
commitd3604c52e19e4e71965b5d96d6fab879bac7effc (patch)
treeef79450d7038ae70072d8fb155442a778cfdc14d /test
parent6e4573f9a1ace7cba38d0cecb95b4dfe95c73c71 (diff)
Remove BK_effect constructor
Diffstat (limited to 'test')
-rw-r--r--test/typecheck/pass/nzcv.sail4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/typecheck/pass/nzcv.sail b/test/typecheck/pass/nzcv.sail
index a477cd97..3e23e529 100644
--- a/test/typecheck/pass/nzcv.sail
+++ b/test/typecheck/pass/nzcv.sail
@@ -4,6 +4,10 @@ val bit[4] -> unit effect pure test
function test nzcv =
{
+ N := 0b0;
+ Z := 0b0;
+ C := 0b0;
+ V := 0b0;
(N,Z,C,V) := nzcv;
()
}