summaryrefslogtreecommitdiff
path: root/test/smt/shiftr_zero_1.unsat.sail
blob: e43787d9d9f35ae045e2880abc536d2eafa74159 (plain)
1
2
3
4
5
6
7
8
9
10
11
default Order dec

$include <prelude.sail>

register R : bits(64)

$property
function prop((): unit) -> bool = {
  let x = sail_shiftright(R, 64);
  x == 0x0000_0000_0000_0000
}