public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug rtl-optimization/97607] New: Spurious sign extension
@ 2020-10-27 23:54 elronnd at elronnd dot net
  2020-10-28  9:44 ` [Bug rtl-optimization/97607] " rguenth at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: elronnd at elronnd dot net @ 2020-10-27 23:54 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97607

            Bug ID: 97607
           Summary: Spurious sign extension
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: rtl-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: elronnd at elronnd dot net
  Target Milestone: ---

The following code

extern void fun(char);                                                          
void wrapper(char x) { fun(x); }

Should compile 'wrapper' to a single jump, but instead it does this (on amd64):

wrapper:
        movsx   edi, dil
        jmp     fun

Presumably 'x' is getting promoted to int in wrapper, and the promotion never
gets removed.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-03-04 23:57 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-27 23:54 [Bug rtl-optimization/97607] New: Spurious sign extension elronnd at elronnd dot net
2020-10-28  9:44 ` [Bug rtl-optimization/97607] " rguenth at gcc dot gnu.org
2021-03-04 21:03 ` [Bug target/97607] " pinskia at gcc dot gnu.org
2021-03-04 21:04 ` pinskia at gcc dot gnu.org
2021-03-04 23:57 ` pinskia at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).