File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
cpp/ql/src/semmle/code/cpp
csharp/ql/src/semmle/code/csharp/dataflow/internal
java/ql/src/semmle/code/java/dataflow/internal Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -345,7 +345,7 @@ class BarrierGuard extends Expr {
345345 /** NOT YET SUPPORTED. Holds if this guard validates `e` upon evaluating to `branch`. */
346346 abstract deprecated predicate checks ( Expr e , boolean branch ) ;
347347
348- /** Gets a node guarded by this. */
348+ /** Gets a node guarded by this guard . */
349349 final Node getAGuardedNode ( ) {
350350 none ( ) // stub
351351 }
Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ class BarrierGuard extends IRGuardCondition {
181181 /** NOT YET SUPPORTED. Holds if this guard validates `e` upon evaluating to `b`. */
182182 abstract deprecated predicate checks ( Instruction e , boolean b ) ;
183183
184- /** Gets a node guarded by this. */
184+ /** Gets a node guarded by this guard . */
185185 final Node getAGuardedNode ( ) {
186186 none ( ) // stub
187187 }
Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ class BarrierGuard extends Internal::Guard {
177177 /** NOT YET SUPPORTED. Holds if this guard validates `e` upon evaluating to `v`. */
178178 abstract deprecated predicate checks ( Expr e , AbstractValue v ) ;
179179
180- /** Gets a node guarded by this. */
180+ /** Gets a node guarded by this guard . */
181181 final Node getAGuardedNode ( ) {
182182 none ( ) // stub
183183 }
Original file line number Diff line number Diff line change @@ -431,7 +431,7 @@ class BarrierGuard extends Guard {
431431 /** Holds if this guard validates `e` upon evaluating to `branch`. */
432432 abstract predicate checks ( Expr e , boolean branch ) ;
433433
434- /** Gets a node guarded by this. */
434+ /** Gets a node guarded by this guard . */
435435 final Node getAGuardedNode ( ) {
436436 exists ( SsaVariable v , boolean branch , RValue use |
437437 this .checks ( v .getAUse ( ) , branch ) and
You can’t perform that action at this time.
0 commit comments