-
Notifications
You must be signed in to change notification settings - Fork 1.8k
C++: Revert #8515 #8933
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
C++: Revert #8515 #8933
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Found 1 vulnerability.
private newtype TIRFunction = | ||
TFunctionIRFunction(Language::Function func) { IRConstruction::Raw::functionHasIR(func) } or | ||
TVarInitIRFunction(Language::GlobalVariable var) { IRConstruction::Raw::varHasIRFunc(var) } | ||
MkIRFunction(Language::Function func) { IRConstruction::Raw::functionHasIR(func) } |
Check warning
Code scanning / CodeQL
Acronyms should be PascalCase/camelCase.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Found 1 vulnerability.
private newtype TIRFunction = | ||
TFunctionIRFunction(Language::Function func) { IRConstruction::Raw::functionHasIR(func) } or | ||
TVarInitIRFunction(Language::GlobalVariable var) { IRConstruction::Raw::varHasIRFunc(var) } | ||
MkIRFunction(Language::Function func) { IRConstruction::Raw::functionHasIR(func) } |
Check warning
Code scanning / CodeQL
Acronyms should be PascalCase/camelCase.
This was causing performance issues on some projects. We already have a fix for the performance here, but it's causing some new consistency failures in dataflow. So let's just revert the PR for now.
This reverts commit 800e4ea, reversing
changes made to 7ce040f.
DCA: https://github.com/github/codeql-dca-main/issues/4212