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.
1 parent 2171833 commit d05b9c6Copy full SHA for d05b9c6
regression/goto-analyzer/intervals_simple-loops/main.c
@@ -0,0 +1,15 @@
1
+#include <assert.h>
2
+const int g_N = 2;
3
+
4
+void main(void)
5
+{
6
+ for(int i = 0; i < g_N; i++)
7
+ {
8
+ assert(0);
9
+ }
10
11
+ for(int j = 4; j >= g_N; j--)
12
13
14
15
+}
regression/goto-analyzer/intervals_simple-loops/test.desc
@@ -0,0 +1,11 @@
+CORE
+main.c
+--intervals
+^EXIT=0$
+^SIGNAL=0$
+\[main\.assertion\.1\] line 8 assertion 0: UNKNOWN
+\[main\.assertion\.2\] line 13 assertion 0: UNKNOWN
+--
+Test comparision between two symbols does not mark the
+result as bottom
0 commit comments