File tree Expand file tree Collapse file tree 2 files changed +0
-6
lines changed
rangeanalysis/codeql/rangeanalysis Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -148,7 +148,6 @@ signature module InputSig {
148
148
* Predicate to force high precision for the given content.
149
149
*
150
150
* @param c The content to force high precision for.
151
- * @return True if high precision is forced for the content, false otherwise.
152
151
*/
153
152
predicate forceHighPrecision ( Content c ) ;
154
153
@@ -196,7 +195,6 @@ signature module InputSig {
196
195
*
197
196
* @param ppos The parameter position.
198
197
* @param apos The argument position.
199
- * @return True if the parameter position matches the argument position, false otherwise.
200
198
*/
201
199
predicate parameterMatch ( ParameterPosition ppos , ArgumentPosition apos ) ;
202
200
@@ -205,7 +203,6 @@ signature module InputSig {
205
203
*
206
204
* @param node1 The first node in the flow step.
207
205
* @param node2 The second node in the flow step.
208
- * @return True if there is a simple local flow step between node1 and node2, false otherwise.
209
206
*/
210
207
predicate simpleLocalFlowStep ( Node node1 , Node node2 ) ;
211
208
Original file line number Diff line number Diff line change @@ -183,7 +183,6 @@ signature module Semantic {
183
183
* Checks if the guard directly controls a given basic block.
184
184
* @param controlled The basic block to check.
185
185
* @param branch Indicates if the control is a branch or not.
186
- * @returns True if the guard directly controls the basic block, false otherwise.
187
186
*/
188
187
predicate directlyControls ( BasicBlock controlled , boolean branch ) ;
189
188
@@ -192,7 +191,6 @@ signature module Semantic {
192
191
* @param e1 The first expression.
193
192
* @param e2 The second expression.
194
193
* @param polarity The polarity of the equality.
195
- * @returns True if the guard represents the equality, false otherwise.
196
194
*/
197
195
predicate isEquality ( Expr e1 , Expr e2 , boolean polarity ) ;
198
196
@@ -201,7 +199,6 @@ signature module Semantic {
201
199
* @param bb1 The first basic block.
202
200
* @param bb2 The second basic block.
203
201
* @param branch Indicates if the edge is a branch or not.
204
- * @returns True if there is a branch edge between the basic blocks, false otherwise.
205
202
*/
206
203
predicate hasBranchEdge ( BasicBlock bb1 , BasicBlock bb2 , boolean branch ) ;
207
204
}
You can’t perform that action at this time.
0 commit comments