[Bug c/60791] New: missing warning about uninitialized local variable

2014-04-09 Thread dominik.muth at gmx dot de
: c Assignee: unassigned at gcc dot gnu.org Reporter: dominik.muth at gmx dot de // When compiling this file with // // -O3 -Wall -c // // There is no warning about the uninitialized use of r. int f(int i) { int r; while (r != 0) { r = 0

[Bug c/54554] Undetected use of uninitialized variable

2014-04-10 Thread dominik.muth at gmx dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54554 --- Comment #9 from Dominik Muth dominik.muth at gmx dot de --- Please note that in Bug 60791 no warning is given even with -O3 (except when using a legacy version of gcc).

[Bug c++/78042] New: g++ does not select the corresponding overloads of abs() for long and long long

2016-10-19 Thread dominik.muth at gmx dot de
: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: dominik.muth at gmx dot de Target Milestone: --- // begin example file abs.cxx #include #include #include int main() { int myint = INT_MAX; long

[Bug libstdc++/97091] New: Demangling the name of the type of a lambda accepting variadic auto parameters fails

2020-09-17 Thread dominik.muth at gmx dot de
Severity: normal Priority: P3 Component: libstdc++ Assignee: unassigned at gcc dot gnu.org Reporter: dominik.muth at gmx dot de Target Milestone: --- Demangling the mangled name of [](auto...){} fails with gcc 5, 8, 9, 10, and 11. It works with gcc 6 and 7