public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/96975] New: gcc cannot compile at -O0 but compiles at -O1/-O2/-O3
@ 2020-09-08 11:27 tangyixuan at mail dot dlut.edu.cn
  2020-09-08 13:05 ` [Bug c++/96975] " rguenth at gcc dot gnu.org
  2020-09-11 13:08 ` mpolacek at gcc dot gnu.org
  0 siblings, 2 replies; 3+ messages in thread
From: tangyixuan at mail dot dlut.edu.cn @ 2020-09-08 11:27 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 96975
           Summary: gcc cannot compile at -O0 but compiles at -O1/-O2/-O3
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: tangyixuan at mail dot dlut.edu.cn
  Target Milestone: ---

Hi, the following code is not compiled with -O0, but is compiled with
-O1/O2/O3.

$ cat s.cpp

typedef void (* A )();
template < A T > struct S { S (){}};
void T (){} S < T > a ;
int main (){
        void T ();
        S < T > a ;
}

$ g++ -c -O0 s.cpp
/tmp/cc1wgC6C.s:73: Error: symbol
`_ZN14CXXRecordDeclAIXadL_Z13FunctionDeclAvEEEC2Ev' is already defined

$ g++ -c -O2 s.cpp
success.

$ clang++ -c -O0 s.cpp
success.

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

end of thread, other threads:[~2020-09-11 13:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-08 11:27 [Bug c++/96975] New: gcc cannot compile at -O0 but compiles at -O1/-O2/-O3 tangyixuan at mail dot dlut.edu.cn
2020-09-08 13:05 ` [Bug c++/96975] " rguenth at gcc dot gnu.org
2020-09-11 13:08 ` mpolacek 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).