We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05f46a9 commit acac776Copy full SHA for acac776
regression/goto-analyzer/dependence-graph6/file1.c
@@ -0,0 +1,11 @@
1
+extern int s1;
2
+static void sub(void)
3
+{
4
+ if (s1) {
5
+ }
6
+}
7
+
8
+void f1(void)
9
10
+ sub();
11
regression/goto-analyzer/dependence-graph6/file2.c
+extern int s2;
+ if (s2) {
+void f2(void)
regression/goto-analyzer/dependence-graph6/main.c
@@ -0,0 +1,8 @@
+void f1(void);
+void f2(void);
+void main(void)
+ f1();
+ f2();
regression/goto-analyzer/dependence-graph6/test.desc
@@ -0,0 +1,9 @@
+CORE
+main.c
+file1.c file2.c --dependence-graph --show
+^EXIT=0$
+^SIGNAL=0$
+--
+Assertion .+ failed
0 commit comments