Skip to content

Commit 894992d

Browse files
authored
Merge pull request #8169 from MathiasVP/fix-spelling-in-post-dominance-frontier
C++/C#: Fix spelling of 'postDominanceFrontier'
2 parents 5ee9612 + b6740ed commit 894992d

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

cpp/ql/lib/semmle/code/cpp/ir/implementation/aliased_ssa/IRBlock.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ class IRBlock extends IRBlockBase {
200200
* post-dominate block `B`, but block `A` does post-dominate an immediate successor of block `B`.
201201
*/
202202
pragma[noinline]
203-
final IRBlock postPominanceFrontier() {
203+
final IRBlock postDominanceFrontier() {
204204
this.postDominates(result.getASuccessor()) and
205205
not this.strictlyPostDominates(result)
206206
}

cpp/ql/lib/semmle/code/cpp/ir/implementation/raw/IRBlock.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ class IRBlock extends IRBlockBase {
200200
* post-dominate block `B`, but block `A` does post-dominate an immediate successor of block `B`.
201201
*/
202202
pragma[noinline]
203-
final IRBlock postPominanceFrontier() {
203+
final IRBlock postDominanceFrontier() {
204204
this.postDominates(result.getASuccessor()) and
205205
not this.strictlyPostDominates(result)
206206
}

cpp/ql/lib/semmle/code/cpp/ir/implementation/unaliased_ssa/IRBlock.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ class IRBlock extends IRBlockBase {
200200
* post-dominate block `B`, but block `A` does post-dominate an immediate successor of block `B`.
201201
*/
202202
pragma[noinline]
203-
final IRBlock postPominanceFrontier() {
203+
final IRBlock postDominanceFrontier() {
204204
this.postDominates(result.getASuccessor()) and
205205
not this.strictlyPostDominates(result)
206206
}

csharp/ql/src/experimental/ir/implementation/raw/IRBlock.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ class IRBlock extends IRBlockBase {
200200
* post-dominate block `B`, but block `A` does post-dominate an immediate successor of block `B`.
201201
*/
202202
pragma[noinline]
203-
final IRBlock postPominanceFrontier() {
203+
final IRBlock postDominanceFrontier() {
204204
this.postDominates(result.getASuccessor()) and
205205
not this.strictlyPostDominates(result)
206206
}

csharp/ql/src/experimental/ir/implementation/unaliased_ssa/IRBlock.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ class IRBlock extends IRBlockBase {
200200
* post-dominate block `B`, but block `A` does post-dominate an immediate successor of block `B`.
201201
*/
202202
pragma[noinline]
203-
final IRBlock postPominanceFrontier() {
203+
final IRBlock postDominanceFrontier() {
204204
this.postDominates(result.getASuccessor()) and
205205
not this.strictlyPostDominates(result)
206206
}

0 commit comments

Comments
 (0)