Merge pull request #3121 from dbartol/dbartol/ir-generate-all-fixup

C++: Late fix for PR feedback
This commit is contained in:
Robert Marsh
2020-03-25 17:58:01 -07:00
committed by GitHub
5 changed files with 5 additions and 5 deletions

View File

@@ -42,7 +42,7 @@ class Instruction extends Construction::TInstruction {
result = getResultString() + " = " + getOperationString() + " " + getOperandsString()
}
predicate shouldGenerateDumpStrings() {
private predicate shouldGenerateDumpStrings() {
exists(IRConfiguration::IRConfiguration config |
config.shouldEvaluateDebugStringsForFunction(this.getEnclosingFunction())
)

View File

@@ -42,7 +42,7 @@ class Instruction extends Construction::TInstruction {
result = getResultString() + " = " + getOperationString() + " " + getOperandsString()
}
predicate shouldGenerateDumpStrings() {
private predicate shouldGenerateDumpStrings() {
exists(IRConfiguration::IRConfiguration config |
config.shouldEvaluateDebugStringsForFunction(this.getEnclosingFunction())
)

View File

@@ -42,7 +42,7 @@ class Instruction extends Construction::TInstruction {
result = getResultString() + " = " + getOperationString() + " " + getOperandsString()
}
predicate shouldGenerateDumpStrings() {
private predicate shouldGenerateDumpStrings() {
exists(IRConfiguration::IRConfiguration config |
config.shouldEvaluateDebugStringsForFunction(this.getEnclosingFunction())
)