File tree Expand file tree Collapse file tree 7 files changed +9
-9
lines changed Expand file tree Collapse file tree 7 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
$ owi c ./ range. c
2
- owi: [ERROR] Assert failure: (i32. gt_s symbol_1 100 )
2
+ owi: [ERROR] Assert failure: (i32. lt_s 100 symbol_1 )
3
3
model {
4
4
symbol symbol_0 i32 16
5
5
symbol symbol_1 i32 100
Original file line number Diff line number Diff line change 1
1
$ owi sym assert_false. wat -w1
2
- owi: [ERROR] Assert failure: (i32. gt_u symbol_0 symbol_1)
2
+ owi: [ERROR] Assert failure: (i32. lt_u symbol_1 symbol_0 )
3
3
model {
4
4
symbol symbol_0 i32 38077858
5
5
symbol symbol_1 i32 38175397
Original file line number Diff line number Diff line change 1
1
$ owi sym model_out_file. wat -- model-out-file= model_out_file. scfg
2
- owi: [ERROR] Assert failure: (i32. ge_u symbol_0 20 )
2
+ owi: [ERROR] Assert failure: (i32. le_u 20 symbol_0 )
3
3
owi: [ERROR] Reached problem!
4
4
[13 ]
5
5
Original file line number Diff line number Diff line change 1
1
entry_point:
2
2
$ owi rust entry_point. rs -- entry-point= fun
3
- owi: [ERROR] Assert failure: (i32. ge_s symbol_0 4 )
3
+ owi: [ERROR] Assert failure: (i32. le_s 4 symbol_0 )
4
4
model {
5
5
symbol symbol_0 i32 2
6
6
}
Original file line number Diff line number Diff line change 1
1
mul binop:
2
2
$ owi sym mul_i32. wat -- no-value -- deterministic-result-order
3
- owi: [ERROR] Assert failure: (i32. ge_s (i32. mul symbol_0 symbol_1) 0 )
3
+ owi: [ERROR] Assert failure: (i32. le_s 0 (i32. mul symbol_0 symbol_1))
4
4
model {
5
5
symbol symbol_0 i32
6
6
symbol symbol_1 i32
7
7
}
8
8
owi: [ERROR] Reached problem!
9
9
[13 ]
10
10
$ owi sym mul_i64. wat -- no-value -- deterministic-result-order
11
- owi: [ERROR] Assert failure: (i64. ge_s (i64. mul symbol_0 symbol_1) 0 )
11
+ owi: [ERROR] Assert failure: (i64. le_s 0 (i64. mul symbol_0 symbol_1))
12
12
model {
13
13
symbol symbol_0 i64
14
14
symbol symbol_1 i64
Original file line number Diff line number Diff line change 1
1
sub binop :
2
2
$ owi sym sub_i32. wat -- no-value -- deterministic-result-order
3
- owi: [ERROR] Assert failure: (i32. ge_s symbol_0 (i32. sub symbol_0 symbol_1))
3
+ owi: [ERROR] Assert failure: (i32. le_s (i32. sub symbol_0 symbol_1) symbol_0 )
4
4
model {
5
5
symbol symbol_0 i32
6
6
symbol symbol_1 i32
7
7
}
8
8
owi: [ERROR] Reached problem!
9
9
[13 ]
10
10
$ owi sym sub_i64. wat -- no-value -- deterministic-result-order
11
- owi: [ERROR] Assert failure: (i64. ge_s symbol_0 (i64. sub symbol_0 symbol_1))
11
+ owi: [ERROR] Assert failure: (i64. le_s (i64. sub symbol_0 symbol_1) symbol_0 )
12
12
model {
13
13
symbol symbol_0 i64
14
14
symbol symbol_1 i64
Original file line number Diff line number Diff line change 1
1
entry_point:
2
2
$ owi zig entry_point. zig -- entry-point= fun
3
- owi: [ERROR] Assert failure: (i32. ge_s symbol_0 5 )
3
+ owi: [ERROR] Assert failure: (i32. le_s 5 symbol_0 )
4
4
model {
5
5
symbol symbol_0 i32 4
6
6
}
You can’t perform that action at this time.
0 commit comments