summaryrefslogtreecommitdiff
path: root/test/smt/shiftr_zero_1.sat.sail
blob: 04dd74c46fadbb3566cbed0bec4bd2fe6f317a52 (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, 63);
  x == 0x0000_0000_0000_0000
}