Skip to content

Commit b6740ed

Browse files
committed
C++/C#: Fix spelling of 'postDominanceFrontier'.
1 parent 38e4492 commit b6740ed

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)