Skip to content
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

Remove some suppress of -Wmaybe-uninitialized after gcc fix false positive issue #68

Open
oathdruid opened this issue Oct 24, 2024 · 0 comments

Comments

@oathdruid
Copy link
Collaborator

Minimal Reproduction

#include <regex>
#include <string>
 
int main() {
  ::std::string str;
  ::std::regex re(str);
  return 0;
}

g++ -Werror=maybe-uninitialized -O1 -fsanitize=address
https://godbolt.org/z/jvrdhezen
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105616

Known Defective Versions (up to 2024-10-24)

GCC-14 14.1 ❌ 14.2 ❌
GCC-13 13.1 ❌ 13.2 ❌ 13.3 ❌
GCC-12 12.1 ❌ 12.2 ❌ 12.3 ❌ 12.4 ❌
GCC-11 11.1 ✅ 11.2 ✅ 11.3 ✅ 11.4 ✅
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant