Skip to content

Commit 40fd182

Browse files
committed
autoformat
1 parent 7938bc4 commit 40fd182

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

javascript/ql/src/Declarations/DeadStoreOfLocal.ql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ predicate deadStoreOfLocal(VarDef vd, PurelyLocalVariable v) {
3030
}
3131

3232
/**
33-
* Holds if there exists another definition of the variable `v` that dominates `dead`.
34-
*/
33+
* Holds if there exists another definition of the variable `v` that dominates `dead`.
34+
*/
3535
predicate hasDominatingDef(VarDef dead, PurelyLocalVariable v) {
3636
exists(VarDef otherDef | not otherDef = dead and otherDef.getAVariable() = v |
3737
dead.getBasicBlock().getASuccessor+() = otherDef.getBasicBlock()

0 commit comments

Comments
 (0)