[Bug fortran/47485] gfortran -M output is incorrect when -MT option is used

2023-04-27 Thread volker.weissmann at gmx dot de via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47485 Volker Weißmann changed: What|Removed |Added CC||volker.weissmann at gmx dot de

[Bug fortran/109211] New: f951: internal compiler error: in gfc_current_interface_head

2023-03-20 Thread volker.weissmann at gmx dot de via Gcc-bugs
Priority: P3 Component: fortran Assignee: unassigned at gcc dot gnu.org Reporter: volker.weissmann at gmx dot de Target Milestone: --- My compiler told me to submit a bug report, so here I go: $ cat bug.f90 module child contains module procedure childprod

[Bug fortran/109202] New: gfortran -M outputs dependency cycle

2023-03-19 Thread volker.weissmann at gmx dot de via Gcc-bugs
Assignee: unassigned at gcc dot gnu.org Reporter: volker.weissmann at gmx dot de Target Milestone: --- How to reproduce: $ cat foo.f90 module circle integer :: x end module circle program prog use, non_intrinsic :: circle, only: x end program prog $ gfortran -cpp -M -c

[Bug translation/107467] New: Miscompilation involing -Os , -flto and -fno-strict-aliasing

2022-10-30 Thread volker.weissmann at gmx dot de via Gcc-bugs
Priority: P3 Component: translation Assignee: unassigned at gcc dot gnu.org Reporter: volker.weissmann at gmx dot de Target Milestone: --- Created attachment 53798 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=53798=edit Source Code g++ -g Record.cpp

[Bug tree-optimization/107427] New: ICE Segmentation fault when -O1 -fdisable-tree-lower -fdisable-tree-eh is given

2022-10-26 Thread volker.weissmann at gmx dot de via Gcc-bugs
Severity: normal Priority: P3 Component: tree-optimization Assignee: unassigned at gcc dot gnu.org Reporter: volker.weissmann at gmx dot de Target Milestone: --- $ cat main.c void func(){} $ gcc -c main.c -O1 -fdisable-tree-lower -fdisable-tree-eh cc1: note

[Bug lto/107418] lto-dump -gimple-stats Segmentation Fault

2022-10-26 Thread volker.weissmann at gmx dot de via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107418 --- Comment #1 from Volker Weißmann --- If you don't like that I enabled -flto, but disabled the optimizer, tell me, then I minify another example that triggers the same segfault, even if -Os is given.

[Bug lto/107418] New: lto-dump -gimple-stats Segmentation Fault

2022-10-26 Thread volker.weissmann at gmx dot de via Gcc-bugs
Assignee: unassigned at gcc dot gnu.org Reporter: volker.weissmann at gmx dot de CC: marxin at gcc dot gnu.org Target Milestone: --- I don't understand what -gimple-stats does, but I don't think it should segfault: $ g++ bug.cpp -c -flto && lto-du

[Bug c++/93716] New: [feature request] Improve error message for Classes without a default constructor

2020-02-12 Thread volker.weissmann at gmx dot de
Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: volker.weissmann at gmx dot de Target Milestone: --- Consider the following C++ source code: - class NoDefaultConstr { public