C++/C#: resync

This commit is contained in:
Robert Marsh
2020-03-11 12:41:26 -07:00
parent 1878d04852
commit cc99ddfd2c
8 changed files with 12 additions and 12 deletions

View File

@@ -27,7 +27,7 @@ class IRBlockBase extends TIRBlock {
* by debugging and printing code only.
*/
int getDisplayIndex() {
exists(IRConfiguration config |
exists(IRConfiguration::IRConfiguration config |
config.shouldEvaluateDebugStringsForFunction(this.getEnclosingFunction())
) and
this =

View File

@@ -283,7 +283,7 @@ module InstructionSanity {
* `File` and line number. Used for assigning register names when printing IR.
*/
private Instruction getAnInstructionAtLine(IRFunction irFunc, Language::File file, int line) {
exists(IRConfiguration config |
exists(IRConfiguration::IRConfiguration config |
config.shouldEvaluateDebugStringsForFunction(irFunc.getFunction())
) and
exists(Language::Location location |
@@ -311,7 +311,7 @@ class Instruction extends Construction::TInstruction {
}
predicate shouldGenerateDumpStrings() {
exists(IRConfiguration config |
exists(IRConfiguration::IRConfiguration config |
config.shouldEvaluateDebugStringsForFunction(this.getEnclosingFunction())
)
}

View File

@@ -27,7 +27,7 @@ class IRBlockBase extends TIRBlock {
* by debugging and printing code only.
*/
int getDisplayIndex() {
exists(IRConfiguration config |
exists(IRConfiguration::IRConfiguration config |
config.shouldEvaluateDebugStringsForFunction(this.getEnclosingFunction())
) and
this =

View File

@@ -283,7 +283,7 @@ module InstructionSanity {
* `File` and line number. Used for assigning register names when printing IR.
*/
private Instruction getAnInstructionAtLine(IRFunction irFunc, Language::File file, int line) {
exists(IRConfiguration config |
exists(IRConfiguration::IRConfiguration config |
config.shouldEvaluateDebugStringsForFunction(irFunc.getFunction())
) and
exists(Language::Location location |
@@ -311,7 +311,7 @@ class Instruction extends Construction::TInstruction {
}
predicate shouldGenerateDumpStrings() {
exists(IRConfiguration config |
exists(IRConfiguration::IRConfiguration config |
config.shouldEvaluateDebugStringsForFunction(this.getEnclosingFunction())
)
}