We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca53a8e commit 353ee8bCopy full SHA for 353ee8b
1 file changed
cpp/ql/test/library-tests/ir/range-analysis/test.cpp
@@ -145,4 +145,15 @@ void nonterminating_without_operands_as_ssa(X *x) {
145
while (x->n) {
146
x->n--;
147
}
148
+}
149
+
150
+void test_with_irreduble_cfg(int i, int x) {
151
+ if (x < i) {
152
+ } else {
153
+ goto inLoop;
154
+ }
155
+ for(; i < x; i++) {
156
+ inLoop:
157
+ range(i); // $ range="<=InitializeParameter: x+0"
158
159
0 commit comments