File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
shared/rangeanalysis/codeql/rangeanalysis Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -189,6 +189,8 @@ signature module Semantic {
189
189
* Console.WriteLine("x is greater than y");
190
190
* }
191
191
* ```
192
+ * `branch` indicates whether the basic block is entered when the guard
193
+ * evaluates to `true` or when it evaluates to `false`.
192
194
*/
193
195
predicate directlyControls ( BasicBlock controlled , boolean branch ) ;
194
196
@@ -211,6 +213,8 @@ signature module Semantic {
211
213
* printf("x is not greater than y\n");
212
214
* }
213
215
* ```
216
+ * `branch` indicates whether the second basic block is the one entered
217
+ * when the guard evaluates to `true` or when it evaluates to `false`.
214
218
*/
215
219
predicate hasBranchEdge ( BasicBlock bb1 , BasicBlock bb2 , boolean branch ) ;
216
220
}
You can’t perform that action at this time.
0 commit comments