Skip to content

Commit cc99ddf

Browse files
committed
C++/C#: resync
1 parent 1878d04 commit cc99ddf

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class IRBlockBase extends TIRBlock {
2727
* by debugging and printing code only.
2828
*/
2929
int getDisplayIndex() {
30-
exists(IRConfiguration config |
30+
exists(IRConfiguration::IRConfiguration config |
3131
config.shouldEvaluateDebugStringsForFunction(this.getEnclosingFunction())
3232
) and
3333
this =

cpp/ql/src/semmle/code/cpp/ir/implementation/raw/Instruction.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ module InstructionSanity {
283283
* `File` and line number. Used for assigning register names when printing IR.
284284
*/
285285
private Instruction getAnInstructionAtLine(IRFunction irFunc, Language::File file, int line) {
286-
exists(IRConfiguration config |
286+
exists(IRConfiguration::IRConfiguration config |
287287
config.shouldEvaluateDebugStringsForFunction(irFunc.getFunction())
288288
) and
289289
exists(Language::Location location |
@@ -311,7 +311,7 @@ class Instruction extends Construction::TInstruction {
311311
}
312312

313313
predicate shouldGenerateDumpStrings() {
314-
exists(IRConfiguration config |
314+
exists(IRConfiguration::IRConfiguration config |
315315
config.shouldEvaluateDebugStringsForFunction(this.getEnclosingFunction())
316316
)
317317
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class IRBlockBase extends TIRBlock {
2727
* by debugging and printing code only.
2828
*/
2929
int getDisplayIndex() {
30-
exists(IRConfiguration config |
30+
exists(IRConfiguration::IRConfiguration config |
3131
config.shouldEvaluateDebugStringsForFunction(this.getEnclosingFunction())
3232
) and
3333
this =

cpp/ql/src/semmle/code/cpp/ir/implementation/unaliased_ssa/Instruction.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ module InstructionSanity {
283283
* `File` and line number. Used for assigning register names when printing IR.
284284
*/
285285
private Instruction getAnInstructionAtLine(IRFunction irFunc, Language::File file, int line) {
286-
exists(IRConfiguration config |
286+
exists(IRConfiguration::IRConfiguration config |
287287
config.shouldEvaluateDebugStringsForFunction(irFunc.getFunction())
288288
) and
289289
exists(Language::Location location |
@@ -311,7 +311,7 @@ class Instruction extends Construction::TInstruction {
311311
}
312312

313313
predicate shouldGenerateDumpStrings() {
314-
exists(IRConfiguration config |
314+
exists(IRConfiguration::IRConfiguration config |
315315
config.shouldEvaluateDebugStringsForFunction(this.getEnclosingFunction())
316316
)
317317
}

csharp/ql/src/semmle/code/csharp/ir/implementation/raw/IRBlock.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class IRBlockBase extends TIRBlock {
2727
* by debugging and printing code only.
2828
*/
2929
int getDisplayIndex() {
30-
exists(IRConfiguration config |
30+
exists(IRConfiguration::IRConfiguration config |
3131
config.shouldEvaluateDebugStringsForFunction(this.getEnclosingFunction())
3232
) and
3333
this =

csharp/ql/src/semmle/code/csharp/ir/implementation/raw/Instruction.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ module InstructionSanity {
283283
* `File` and line number. Used for assigning register names when printing IR.
284284
*/
285285
private Instruction getAnInstructionAtLine(IRFunction irFunc, Language::File file, int line) {
286-
exists(IRConfiguration config |
286+
exists(IRConfiguration::IRConfiguration config |
287287
config.shouldEvaluateDebugStringsForFunction(irFunc.getFunction())
288288
) and
289289
exists(Language::Location location |
@@ -311,7 +311,7 @@ class Instruction extends Construction::TInstruction {
311311
}
312312

313313
predicate shouldGenerateDumpStrings() {
314-
exists(IRConfiguration config |
314+
exists(IRConfiguration::IRConfiguration config |
315315
config.shouldEvaluateDebugStringsForFunction(this.getEnclosingFunction())
316316
)
317317
}

csharp/ql/src/semmle/code/csharp/ir/implementation/unaliased_ssa/IRBlock.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class IRBlockBase extends TIRBlock {
2727
* by debugging and printing code only.
2828
*/
2929
int getDisplayIndex() {
30-
exists(IRConfiguration config |
30+
exists(IRConfiguration::IRConfiguration config |
3131
config.shouldEvaluateDebugStringsForFunction(this.getEnclosingFunction())
3232
) and
3333
this =

csharp/ql/src/semmle/code/csharp/ir/implementation/unaliased_ssa/Instruction.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ module InstructionSanity {
283283
* `File` and line number. Used for assigning register names when printing IR.
284284
*/
285285
private Instruction getAnInstructionAtLine(IRFunction irFunc, Language::File file, int line) {
286-
exists(IRConfiguration config |
286+
exists(IRConfiguration::IRConfiguration config |
287287
config.shouldEvaluateDebugStringsForFunction(irFunc.getFunction())
288288
) and
289289
exists(Language::Location location |
@@ -311,7 +311,7 @@ class Instruction extends Construction::TInstruction {
311311
}
312312

313313
predicate shouldGenerateDumpStrings() {
314-
exists(IRConfiguration config |
314+
exists(IRConfiguration::IRConfiguration config |
315315
config.shouldEvaluateDebugStringsForFunction(this.getEnclosingFunction())
316316
)
317317
}

0 commit comments

Comments
 (0)