Skip to content

Commit 2f5e555

Browse files
authored
Merge pull request #1270 from goblint/query_ordering
Fix ordering of queries by deduplicating indices.
2 parents 6389a7f + 9bb9ae2 commit 2f5e555

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/domains/queries.ml

+2-2
Original file line numberDiff line numberDiff line change
@@ -331,8 +331,8 @@ struct
331331
| Any (MustTermLoop _) -> 53
332332
| Any MustTermAllLoops -> 54
333333
| Any IsEverMultiThreaded -> 55
334-
| Any (TmpSpecial _) -> 53
335-
| Any (IsAllocVar _) -> 54
334+
| Any (TmpSpecial _) -> 56
335+
| Any (IsAllocVar _) -> 57
336336

337337
let rec compare a b =
338338
let r = Stdlib.compare (order a) (order b) in

0 commit comments

Comments
 (0)