public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug middle-end/115037] New: Unused std::vector is not optimized away.
@ 2024-05-10 15:16 hubicka at gcc dot gnu.org
  2024-05-10 15:42 ` [Bug middle-end/115037] " pinskia at gcc dot gnu.org
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: hubicka at gcc dot gnu.org @ 2024-05-10 15:16 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 115037
           Summary: Unused std::vector is not optimized away.
           Product: gcc
           Version: 14.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
          Assignee: unassigned at gcc dot gnu.org
          Reporter: hubicka at gcc dot gnu.org
  Target Milestone: ---

Compiling 
#include <vector>
void
test()
{
        std::vector<int> test;
        test.push_back (1);
}

leads to

_Z4testv:
.LFB1253:
        .cfi_startproc
        subq    $8, %rsp
        .cfi_def_cfa_offset 16
        movl    $4, %edi
        call    _Znwm
        movl    $4, %esi
        movl    $1, (%rax)
        movq    %rax, %rdi
        addq    $8, %rsp
        .cfi_def_cfa_offset 8
        jmp     _ZdlPvm

while clang optimizes to:

_Z4testv:                               # @_Z4testv
        .cfi_startproc
# %bb.0:
        retq

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

end of thread, other threads:[~2024-05-11  0:07 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-05-10 15:16 [Bug middle-end/115037] New: Unused std::vector is not optimized away hubicka at gcc dot gnu.org
2024-05-10 15:42 ` [Bug middle-end/115037] " pinskia at gcc dot gnu.org
2024-05-10 16:12 ` hubicka at gcc dot gnu.org
2024-05-10 16:22 ` pinskia at gcc dot gnu.org
2024-05-10 16:24 ` pinskia at gcc dot gnu.org
2024-05-10 17:19 ` xry111 at gcc dot gnu.org
2024-05-10 18:40 ` redi at gcc dot gnu.org
2024-05-11  0:07 ` xry111 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).