[Bug other/80437] large decimal numbers in diagnostics are hard to read

2018-11-01 Thread egallager at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80437 --- Comment #7 from Eric Gallager --- (In reply to Markus Trippelsdorf from comment #6) > (In reply to David Malcolm from comment #4) > > If the warning is based of a const, maybe lead with that e.g. in the 2nd > > place here: > > > > bug.c:11:5

[Bug other/80437] large decimal numbers in diagnostics are hard to read

2017-08-01 Thread trippels at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80437 Markus Trippelsdorf changed: What|Removed |Added CC||trippels at gcc dot gnu.org --- Co

[Bug other/80437] large decimal numbers in diagnostics are hard to read

2017-08-01 Thread egallager at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80437 Eric Gallager changed: What|Removed |Added CC||egallager at gcc dot gnu.org --- Comment

[Bug other/80437] large decimal numbers in diagnostics are hard to read

2017-08-01 Thread dmalcolm at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80437 --- Comment #4 from David Malcolm --- If the warning is based of a const, maybe lead with that e.g. in the 2nd place here: bug.c:11:5: warning: 'memset': specified size 18446744073709551611 (aka 0x___fffb, 1<<64 - 5, SOME_CONST) exce

[Bug other/80437] large decimal numbers in diagnostics are hard to read

2017-08-01 Thread dmalcolm at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80437 --- Comment #3 from David Malcolm --- Maybe could also make creative use of underscores in large hex values to make things easier on the eye e.g.: bug.c:11:5: warning: 'memset': specified size 18446744073709551611 (aka 0x___fffb, 1<<

[Bug other/80437] large decimal numbers in diagnostics are hard to read

2017-08-01 Thread dmalcolm at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80437 --- Comment #2 from David Malcolm --- Maybe all four (decimal, hex, formula, and constant): bug.c:11:5: warning: 'memset': specified size 18446744073709551611 (aka 0xfffb, 1<<64 - 5, SOME_CONST) exceeds maximum object size 9223372036

[Bug other/80437] large decimal numbers in diagnostics are hard to read

2017-08-01 Thread dmalcolm at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80437 David Malcolm changed: What|Removed |Added CC||dmalcolm at gcc dot gnu.org --- Comment

[Bug other/80437] large decimal numbers in diagnostics are hard to read

2017-04-15 Thread msebor at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80437 Martin Sebor changed: What|Removed |Added Keywords||diagnostic Severity|normal