summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
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;
()
}