-
-
Notifications
You must be signed in to change notification settings - Fork 267
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
Debug string literal pooling #133
Comments
This seems to apply not only to assert(this) checks, but to all kinds of string literals. |
Just to clarify, the LLVM constant merger pass does catch this on optimized builds. |
We should mark string constants as |
Okay, merged the patch. User- (resp. frontend-) generated string constants are still not marked up with |
This is part of a fix for issue #133.
Frontend generated string constants are now marked with |
shouldn't the issue be closed? |
I guess so, yes. |
Currently, we are emitting file name and "null this" as new string constants for each inserted this check assertion, which leads to slight code bloat. Not that this would usually matter in the face of debug info…
The text was updated successfully, but these errors were encountered: