We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 92007d5 + 7d28227 commit 3af3befCopy full SHA for 3af3bef
src/analyses/base.ml
@@ -38,6 +38,7 @@ struct
38
type t = Dom.t
39
module D = Dom
40
include Analyses.ValueContexts(D)
41
+ module P = IdentityP(Dom)
42
43
(* Two global invariants:
44
1. Priv.V -> Priv.G -- used for Priv
tests/regression/01-cpa/80-path.c
@@ -0,0 +1,20 @@
1
+//PARAM: --enable ana.int.interval --set ana.path_sens[+] base
2
+#include <stdio.h>
3
+#include <stdlib.h>
4
+#include <goblint.h>
5
+
6
+int main () {
7
+ int a;
8
+ int b;
9
10
+ int top;
11
12
+ if(top) {
13
+ a = 5; b = 5;
14
+ } else {
15
+ a = 10; b = 10;
16
+ }
17
18
+ __goblint_check(a == b);
19
+ return 0;
20
+}
0 commit comments