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 {
189189 * Console.WriteLine("x is greater than y");
190190 * }
191191 * ```
192+ * `branch` indicates whether the basic block is entered when the guard
193+ * evaluates to `true` or when it evaluates to `false`.
192194 */
193195 predicate directlyControls ( BasicBlock controlled , boolean branch ) ;
194196
@@ -211,6 +213,8 @@ signature module Semantic {
211213 * printf("x is not greater than y\n");
212214 * }
213215 * ```
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`.
214218 */
215219 predicate hasBranchEdge ( BasicBlock bb1 , BasicBlock bb2 , boolean branch ) ;
216220 }
You can’t perform that action at this time.
0 commit comments