[Bug debug/100383] cfi sections directive detection fails with binutils 2.36

2024-07-20 Thread ssbssa at yahoo dot de via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100383 --- Comment #5 from Hannes Domani --- This could be closed since gcc-13.1.

[Bug debug/52160] gdb ignores line "bar: if(foo)goto bar;"

2024-01-08 Thread ssbssa at yahoo dot de via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=52160 Hannes Domani changed: What|Removed |Added CC||ssbssa at yahoo dot de --- Comment #5

[Bug demangler/86152] Failure to demange clone names with digits

2024-01-04 Thread ssbssa at yahoo dot de via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86152 Hannes Domani changed: What|Removed |Added CC||ssbssa at yahoo dot de --- Comment #1

[Bug target/100402] [10.3 regression] crash with setjmp/longjmp and SEH

2021-05-05 Thread ssbssa at yahoo dot de via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100402 --- Comment #11 from Hannes Domani --- > Your testcase does not compile with the C compiler: > > Compiling it with the C++ compiler works for me: Sorry about the c/c++ confusion. > Created attachment 50754 [details] > Tentative fix > > Plea

[Bug target/100402] Crash in longjmp

2021-05-03 Thread ssbssa at yahoo dot de via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100402 --- Comment #3 from Hannes Domani --- Created attachment 50745 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=50745&action=edit output of -fdump-tree-optimized

[Bug target/100402] Crash in longjmp

2021-05-03 Thread ssbssa at yahoo dot de via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100402 --- Comment #2 from Hannes Domani --- Created attachment 50744 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=50744&action=edit assembly (-S)

[Bug target/100402] Crash in longjmp

2021-05-03 Thread ssbssa at yahoo dot de via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100402 --- Comment #1 from Hannes Domani --- Created attachment 50743 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=50743&action=edit preprocessed code (-E)

[Bug target/100402] New: Crash in longjmp

2021-05-03 Thread ssbssa at yahoo dot de via Gcc-bugs
: unassigned at gcc dot gnu.org Reporter: ssbssa at yahoo dot de Target Milestone: --- The following example: -- >8 -- // gcc -O1 test.c #include static jmp_buf buf; static bool stop = false; void call_func(void(*f

[Bug debug/100383] New: cfi sections directive detection fails with binutils 2.36

2021-05-02 Thread ssbssa at yahoo dot de via Gcc-bugs
Priority: P3 Component: debug Assignee: unassigned at gcc dot gnu.org Reporter: ssbssa at yahoo dot de Target Milestone: --- Since binutils 2.36 [1], the objdump output [2] of the cfi sections directive detection command (objdump -j .debug_frame -r conftest.o

[Bug bootstrap/98860] [11 Regression] boostrap failure on MinGW-w64 windows 10

2021-02-26 Thread ssbssa at yahoo dot de via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98860 --- Comment #36 from Hannes Domani --- Note: This is a binutils/ld bug: https://sourceware.org/bugzilla/show_bug.cgi?id=27268 And I've sent a patch there: https://sourceware.org/pipermail/binutils/2021-February/115434.html

[Bug c/89807] Incorrect -Wconversion warning when shifting uint32_t with 24

2021-02-13 Thread ssbssa at yahoo dot de via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89807 --- Comment #1 from Hannes Domani --- (In reply to Nickolay Kolchin-Semyonov from comment #0) > uint8_t a = (v >> 24) & 0xFF; // ERROR: produces warning > uint8_t a2 = v >> 24; // ERROR: produces warning I think the '& 0xFF' part is opti

[Bug c++/90526] Missing DW_AT_const_value for constexpr field

2020-04-11 Thread ssbssa at yahoo dot de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90526 Hannes Domani changed: What|Removed |Added CC||ssbssa at yahoo dot de --- Comment #1

[Bug debug/94459] Missing c++ debug information for 'auto&' return type

2020-04-04 Thread ssbssa at yahoo dot de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94459 --- Comment #5 from Hannes Domani --- I also should mention that this is a precursor to fix gdb_bug 24154: https://sourceware.org/bugzilla/show_bug.cgi?id=24154

[Bug debug/94459] Missing c++ debug information for 'auto&' return type

2020-04-03 Thread ssbssa at yahoo dot de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94459 --- Comment #3 from Domani Hannes --- (In reply to Jakub Jelinek from comment #1) > Looking through DW_TAG_const_type seems insufficient to me, can't there be > other qualifications (at least DW_TAG_volatile_type, perhaps in various > orders)? >

[Bug debug/94459] Missing c++ debug information for 'auto&' return type

2020-04-02 Thread ssbssa at yahoo dot de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94459 --- Comment #2 from Domani Hannes --- (In reply to Jakub Jelinek from comment #1) > Looking through DW_TAG_const_type seems insufficient to me, can't there be > other qualifications (at least DW_TAG_volatile_type, perhaps in various > orders)? >

[Bug debug/94459] New: Missing c++ debug information for 'auto&' return type

2020-04-02 Thread ssbssa at yahoo dot de
Priority: P3 Component: debug Assignee: unassigned at gcc dot gnu.org Reporter: ssbssa at yahoo dot de Target Milestone: --- For the following example: template struct MyClass { T value; auto get() { return value; } auto &get_ref() { return value; }

[Bug c/92292] duplicate -Wformat warnings about incorrect printf format specifiers

2019-12-31 Thread ssbssa at yahoo dot de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92292 --- Comment #4 from Domani Hannes --- (In reply to jos...@codesourcery.com from comment #3) > On Tue, 31 Dec 2019, ssbssa at yahoo dot de wrote: > > > But does it make sense to do a format check multiple times for one function? &g

[Bug c/92292] duplicate -Wformat warnings about incorrect printf format specifiers

2019-12-31 Thread ssbssa at yahoo dot de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92292 Domani Hannes changed: What|Removed |Added CC||ssbssa at yahoo dot de --- Comment #2

[Bug debug/86593] [8 Regression] internal compiler error: in based_loc_descr, at dwarf2out.c:14272

2019-03-16 Thread ssbssa at yahoo dot de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86593 Domani Hannes changed: What|Removed |Added CC||ssbssa at yahoo dot de --- Comment #16

[Bug lto/88925] address of static string changes

2019-01-21 Thread ssbssa at yahoo dot de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88925 --- Comment #2 from Domani Hannes --- (In reply to Richard Biener from comment #1) > It works for me on x86_64-linux. Note to get the desired behavior GCC > relies on > string-merging performed by the linker. > > Can you elaborate on the host/t

[Bug lto/88925] New: address of static string changes

2019-01-19 Thread ssbssa at yahoo dot de
Assignee: unassigned at gcc dot gnu.org Reporter: ssbssa at yahoo dot de CC: marxin at gcc dot gnu.org Target Milestone: --- Created attachment 45468 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=45468&action=edit test case With the attached file, I

[Bug lto/82027] [7/8 Regression] wrong code with -O3 -flto

2017-12-21 Thread ssbssa at yahoo dot de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82027 --- Comment #11 from Domani Hannes --- (In reply to Martin Jambor from comment #10) > OK, so I did not realize that duplicate_thunk_for_node does not set > clone_of but former_clone of, which is of course what it must do. I > have checked and th

[Bug ipa/82027] [5/6/7/8 Regression] wrong code with -O3 -flto

2017-09-01 Thread ssbssa at yahoo dot de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82027 --- Comment #4 from Domani Hannes --- (In reply to Martin Liška from comment #3) > Note that original function does: > > void calcPercent( const char *name,int pos,int size ) > { > int percent = 100*pos/size; > if( percent!=m

[Bug lto/82027] New: wrong code with -O3 -flto

2017-08-29 Thread ssbssa at yahoo dot de
: unassigned at gcc dot gnu.org Reporter: ssbssa at yahoo dot de CC: marxin at gcc dot gnu.org Target Milestone: --- Created attachment 42082 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=42082&action=edit test case With the attached file I get a divisi

[Bug driver/78787] O Color, Where Art Thou? (with -flto)

2016-12-13 Thread ssbssa at yahoo dot de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78787 Domani Hannes changed: What|Removed |Added CC||ssbssa at yahoo dot de --- Comment #2

[Bug lto/70955] [6/7 Regression] Wrong code generation for __builtin_ms_va_list with -flto

2016-05-09 Thread ssbssa at yahoo dot de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70955 --- Comment #11 from Domani Hannes --- I can confirm that this patch works for windows as well.

[Bug lto/70955] [6/7 Regression] Wrong code generation for __builtin_ms_va_list with -flto

2016-05-09 Thread ssbssa at yahoo dot de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70955 Domani Hannes changed: What|Removed |Added CC||ssbssa at yahoo dot de --- Comment #9

[Bug tree-optimization/59124] [4.9/5/6 Regression] Wrong warnings "array subscript is above array bounds"

2016-03-29 Thread ssbssa at yahoo dot de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59124 --- Comment #37 from Domani Hannes --- With the new patch there is still a warning with this example: === 8< === int f(void); int test(void) { int baz[4]; int q = 0; int d, i, j, sum; for (i = 0; i < 2; i++) {

[Bug lto/58042] MinGW GCC produces problematic x64 executable with -O2 -static -flto -m64

2014-08-11 Thread ssbssa at yahoo dot de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58042 Domani Hannes changed: What|Removed |Added CC||ssbssa at yahoo dot de --- Comment #1

[Bug libquadmath/60349] Any call to expq (or libquadmath function that might possibly call expq) segfaults in mingw-gcc.

2014-02-27 Thread ssbssa at yahoo dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60349 Domani Hannes changed: What|Removed |Added CC||ssbssa at yahoo dot de --- Comment #2