Skip to content

Commit

Permalink
Fix ordering of queries by deduplicating indices.
Browse files Browse the repository at this point in the history
  • Loading branch information
jerhard committed Nov 23, 2023
1 parent 6389a7f commit 9bb9ae2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/domains/queries.ml
Original file line number Diff line number Diff line change
Expand Up @@ -331,8 +331,8 @@ struct
| Any (MustTermLoop _) -> 53
| Any MustTermAllLoops -> 54
| Any IsEverMultiThreaded -> 55
| Any (TmpSpecial _) -> 53
| Any (IsAllocVar _) -> 54
| Any (TmpSpecial _) -> 56
| Any (IsAllocVar _) -> 57

let rec compare a b =
let r = Stdlib.compare (order a) (order b) in
Expand Down

0 comments on commit 9bb9ae2

Please sign in to comment.