We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2950c4 commit 098a9a9Copy full SHA for 098a9a9
regression/goto-instrument/slice24/main.c
@@ -0,0 +1,14 @@
1
+#include <assert.h>
2
+#include <stdlib.h>
3
+
4
+static void f(int *x) { *x = 5; }
5
+static void g(int *x) { assert(*x == 5); }
6
7
+int main(int argc, char **argv)
8
+{
9
+ int *x = (int*)malloc(sizeof(int));
10
+ f(x);
11
+ g(x);
12
13
+ return 0;
14
+}
regression/goto-instrument/slice24/test.desc
@@ -0,0 +1,8 @@
+KNOWNBUG
+main.c
+--full-slice --add-library
+^EXIT=0$
+^SIGNAL=0$
+^VERIFICATION SUCCESSFUL$
+--
+Data dependencies across function calls are still not working correctly.
0 commit comments