: UNCONFIRMED
Severity: normal
Priority: P3
Component: rtl-optimization
Assignee: unassigned at gcc dot gnu.org
Reporter: wojtek.golf at interia dot pl
Target Milestone: ---
GCC version: 7.4.0 (but seen in other versions as well, including trunk on
godbolt
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93184
--- Comment #2 from Wojciech Migda ---
Should there be at least a warning in case when the shift amount is a
compile-time known constant?
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60028
--- Comment #2 from Wojciech Migda ---
Still visible with gcc 5.4.1 and 6.2.1
oduct: gcc
Version: 5.4.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c
Assignee: unassigned at gcc dot gnu.org
Reporter: wojtek.golf at interia dot pl
Target Milestone: ---
Snippet below, when compiled with arm
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80088
--- Comment #2 from Wojciech Migda ---
It might be that this is Linaro-only bug. Please do what you feel is best.
: 4.8.2
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: target
Assignee: unassigned at gcc dot gnu.org
Reporter: wojtek.golf at interia dot pl
GCC 4.8.2, target tic6x
Input source:
int e_fun(int arg);
extern int e_int;
void
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60028
Wojciech Migda changed:
What|Removed |Added
Target||tic6x-none-elf
Host|
: UNCONFIRMED
Severity: major
Priority: P3
Component: target
Assignee: unassigned at gcc dot gnu.org
Reporter: wojtek.golf at interia dot pl
=
Exact version of gcc:
tic6x-none-elf
Assignee: unassigned at gcc dot gnu.org
Reporter: wojtek.golf at interia dot pl
Host: Linux wmigda-desktop 3.11.0-13-generic #20-Ubuntu SMP
Wed Oct 23 17:26:33 UTC 2013 i686 i686 i686 GNU/Linux
Target: tic6x-none-elf
Build
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57295
Wojciech Migda changed:
What|Removed |Added
CC||wojtek.golf at interia dot pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57295
--- Comment #2 from Wojciech Migda ---
Created attachment 32261
--> http://gcc.gnu.org/bugzilla/attachment.cgi?id=32261&action=edit
Proposed patch
Analysis of the reported problem has shown that expanding movmisalign
instruction did not take in
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60369
--- Comment #1 from Wojciech Migda ---
Created attachment 32273
--> http://gcc.gnu.org/bugzilla/attachment.cgi?id=32273&action=edit
Patch, as specified in the report body.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60431
--- Comment #1 from Wojciech Migda ---
Created attachment 32275
--> http://gcc.gnu.org/bugzilla/attachment.cgi?id=32275&action=edit
Proposed patch
Component: target
Assignee: unassigned at gcc dot gnu.org
Reporter: wojtek.golf at interia dot pl
Host: Linux wmigda-desktop 3.11.0-13-generic #20-Ubuntu SMP
Wed Oct 23 17:26:33 UTC 2013 i686 i686 i686 GNU/Linux
Target: tic6x-none-elf
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60431
--- Comment #2 from Wojciech Migda ---
Created attachment 32276
--> http://gcc.gnu.org/bugzilla/attachment.cgi?id=32276&action=edit
patch amendment - previous was incomplete
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60431
--- Comment #4 from Wojciech Migda ---
Ok, my bad. I'll work on the testcases so that I can make gcc emit abs when it
is valid. Should this PR be rejected then?
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60431
--- Comment #5 from Wojciech Migda ---
So, I'd like to learn some more from this. Suppose I have code like this:
int fn_i1(int x)
{
x /= 2;
return (x >= 0) ? x : -x;
}
or
short fn_s1(short x)
{
return (x >= 0) ? x : -x;
}
In each case th
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60431
Wojciech Migda changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
Resolution|---
: 4.8.3
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: target
Assignee: unassigned at gcc dot gnu.org
Reporter: wojtek.golf at interia dot pl
Host: Linux wmigda-desktop 3.11.0-13-generic #20-Ubuntu SMP
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60446
--- Comment #1 from Wojciech Migda ---
Created attachment 32284
--> http://gcc.gnu.org/bugzilla/attachment.cgi?id=32284&action=edit
Proposed patch
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64451
Wojciech Migda changed:
What|Removed |Added
CC||wojtek.golf at interia dot pl
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57295
--- Comment #5 from Wojciech Migda ---
(In reply to Yaakov Selkowitz from comment #4)
> This still occurs with 4.9.2, and the patch in comment 2 fixes it.
I contacted Bernd Schmidt few minutes ago about the patch and he wrote that:
> I think I'
22 matches
Mail list logo