public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug translation/107467] New: Miscompilation involing -Os , -flto and -fno-strict-aliasing
@ 2022-10-30 22:10 volker.weissmann at gmx dot de
  2022-10-30 23:22 ` [Bug tree-optimization/107467] " pinskia at gcc dot gnu.org
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: volker.weissmann at gmx dot de @ 2022-10-30 22:10 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 107467
           Summary: Miscompilation involing -Os , -flto and
                    -fno-strict-aliasing
           Product: gcc
           Version: 12.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: translation
          Assignee: unassigned at gcc dot gnu.org
          Reporter: volker.weissmann at gmx dot de
  Target Milestone: ---

Created attachment 53798
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=53798&action=edit
Source Code

g++ -g Record.cpp -c -fPIC -Os -flto
g++ -g -shared Record.o -fno-strict-aliasing -o librecord.so
g++ main.cpp -L. -lrecord
LD_LIBRARY_PATH=$PWD ./a.out

This sometimes prints 1 and sometimes prints 0.
If I remove the -fno-strict-aliasing flag of the second g++ command, or add it
to the first g++ command, it always prints 1.

There is no violation of the strict-aliasing rule in Record.cpp, at least none
that I could spot.

If you are afraid of non-reproducibility, fear not, the generated assembly is
the same every time, and is obviously wrong:

The method Combined<OtherClass>::clashy() is missing a call to get_const

objdump librecord.so --disassemble=_ZN8CombinedI10OtherClassE6clashyEv.isra.0
000000000000113e <_ZN8CombinedI10OtherClassE6clashyEv.isra.0>:
    113e:       48 83 ec 38             sub    $0x38,%rsp
    1142:       64 48 8b 04 25 28 00    mov    %fs:0x28,%rax
    1149:       00 00 
    114b:       48 89 44 24 28          mov    %rax,0x28(%rsp)
    1150:       31 c0                   xor    %eax,%eax
    1152:       48 8d 74 24 18          lea    0x18(%rsp),%rsi
    1157:       48 8d 7c 24 08          lea    0x8(%rsp),%rdi
    115c:       e8 b9 ff ff ff          call   111a
<_Z13compare_pairsIP10OtherClassEbRKSt4pairIiT_ES6_>
    1161:       48 8b 54 24 28          mov    0x28(%rsp),%rdx
    1166:       64 48 2b 14 25 28 00    sub    %fs:0x28,%rdx
    116d:       00 00 
    116f:       74 05                   je     1176
<_ZN8CombinedI10OtherClassE6clashyEv.isra.0+0x38>
    1171:       e8 ca fe ff ff          call   1040 <__stack_chk_fail@plt>
    1176:       48 83 c4 38             add    $0x38,%rsp
    117a:       c3                      ret


The almost identical Combined<SomeClass>::clashy() gets compiled correctly:

objdump librecord.so --disassemble=_ZN8CombinedI9SomeClassE6clashyEv.isra.0
000000000000117c <_ZN8CombinedI9SomeClassE6clashyEv.isra.0>:
    117c:       48 83 ec 38             sub    $0x38,%rsp
    1180:       64 48 8b 04 25 28 00    mov    %fs:0x28,%rax
    1187:       00 00 
    1189:       48 89 44 24 28          mov    %rax,0x28(%rsp)
    118e:       31 c0                   xor    %eax,%eax
    1190:       48 8d 74 24 18          lea    0x18(%rsp),%rsi
    1195:       48 8d 7c 24 08          lea    0x8(%rsp),%rdi
    119a:       e8 97 ff ff ff          call   1136
<_ZN8CombinedI9SomeClassE9get_constEv.constprop.0>
    119f:       48 89 54 24 20          mov    %rdx,0x20(%rsp)
    11a4:       89 44 24 18             mov    %eax,0x18(%rsp)
    11a8:       e8 89 ff ff ff          call   1136
<_ZN8CombinedI9SomeClassE9get_constEv.constprop.0>
    11ad:       48 89 54 24 10          mov    %rdx,0x10(%rsp)
    11b2:       89 44 24 08             mov    %eax,0x8(%rsp)
    11b6:       e8 5f ff ff ff          call   111a
<_Z13compare_pairsIP10OtherClassEbRKSt4pairIiT_ES6_>
    11bb:       48 8b 54 24 28          mov    0x28(%rsp),%rdx
    11c0:       64 48 2b 14 25 28 00    sub    %fs:0x28,%rdx
    11c7:       00 00 
    11c9:       74 05                   je     11d0
<_ZN8CombinedI9SomeClassE6clashyEv.isra.0+0x54>
    11cb:       e8 70 fe ff ff          call   1040 <__stack_chk_fail@plt>
    11d0:       48 83 c4 38             add    $0x38,%rsp
    11d4:       c3                      ret


$ gcc -v                                                                        
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: /build/gcc/src/gcc/configure
--enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++,d --enable-bootstrap
--prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man
--infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/
--with-build-config=bootstrap-lto --with-linker-hash-style=gnu
--with-system-zlib --enable-__cxa_atexit --enable-cet=auto
--enable-checking=release --enable-clocale=gnu --enable-default-pie
--enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object
--enable-libstdcxx-backtrace --enable-link-serialization=1
--enable-linker-build-id --enable-lto --enable-multilib --enable-plugin
--enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch
--disable-werror
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 12.2.0 (GCC) 

$ cat main.cpp
void other_func();
int main() { other_func(); }

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

* [Bug tree-optimization/107467] Miscompilation involing -Os , -flto and -fno-strict-aliasing
  2022-10-30 22:10 [Bug translation/107467] New: Miscompilation involing -Os , -flto and -fno-strict-aliasing volker.weissmann at gmx dot de
@ 2022-10-30 23:22 ` pinskia at gcc dot gnu.org
  2022-10-30 23:36 ` pinskia at gcc dot gnu.org
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: pinskia at gcc dot gnu.org @ 2022-10-30 23:22 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Here is the unincluded version of the source:
#include <utility>

template <typename C>
bool __attribute__((noinline))
compare_pairs(const std::pair<int, C> &lhs, const std::pair<int, C> &rhs) {
  return lhs.first == rhs.first && lhs.second == rhs.second;
}

template <typename B> struct Combined {
  std::pair<int, B *> __attribute__((noinline)) get_const() {
    return std::make_pair(123, nullptr);
  }
  bool __attribute__((noinline)) clashy() {
    return compare_pairs(get_const(), get_const());
  }
};

class SomeClass {};
class OtherClass {};

void some_func() {
  Combined<SomeClass> myvar;
  __builtin_printf("%i\n", myvar.clashy());
}

void other_func() {
  Combined<OtherClass> myvar;
  __builtin_printf("%i\n", myvar.clashy());
}

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

* [Bug tree-optimization/107467] Miscompilation involing -Os , -flto and -fno-strict-aliasing
  2022-10-30 22:10 [Bug translation/107467] New: Miscompilation involing -Os , -flto and -fno-strict-aliasing volker.weissmann at gmx dot de
  2022-10-30 23:22 ` [Bug tree-optimization/107467] " pinskia at gcc dot gnu.org
@ 2022-10-30 23:36 ` pinskia at gcc dot gnu.org
  2022-10-30 23:38 ` [Bug tree-optimization/107467] [12/13 Regression] " pinskia at gcc dot gnu.org
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: pinskia at gcc dot gnu.org @ 2022-10-30 23:36 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Here is a single file example which just needs -Os -flto -fno-strict-aliasing:

template <class T>
struct pair
{
    int first;
    T second;
};

template <typename C>
[[gnu::optimize("strict-aliasing")]]
bool __attribute__((noinline))
compare_pairs(const pair<C> &lhs, const pair<C> &rhs) {
  return lhs.first == rhs.first && lhs.second == rhs.second;
}

template <typename B> struct Combined {
  pair<B *> 
__attribute__((noinline)) get_const() {
    return pair<B *>{123, nullptr};
  }
[[gnu::optimize("strict-aliasing")]]
  bool 
__attribute__((noinline)) clashy() {
    return compare_pairs(get_const(), get_const());
  }
};

class SomeClass {};
class OtherClass {};

[[gnu::optimize("strict-aliasing")]]
[[gnu::used]]
void some_func() {
  Combined<SomeClass> myvar;
  __builtin_printf("%i\n", myvar.clashy());
}

[[gnu::optimize("strict-aliasing")]]
void other_func() {
  Combined<OtherClass> myvar;
  __builtin_printf("%i\n", myvar.clashy());
}

[[gnu::optimize("O0")]]
int main()
{
  other_func();
}

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

* [Bug tree-optimization/107467] [12/13 Regression] Miscompilation involing -Os , -flto and -fno-strict-aliasing
  2022-10-30 22:10 [Bug translation/107467] New: Miscompilation involing -Os , -flto and -fno-strict-aliasing volker.weissmann at gmx dot de
  2022-10-30 23:22 ` [Bug tree-optimization/107467] " pinskia at gcc dot gnu.org
  2022-10-30 23:36 ` pinskia at gcc dot gnu.org
@ 2022-10-30 23:38 ` pinskia at gcc dot gnu.org
  2022-10-30 23:39 ` pinskia at gcc dot gnu.org
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: pinskia at gcc dot gnu.org @ 2022-10-30 23:38 UTC (permalink / raw)
  To: gcc-bugs

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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to work|                            |11.1.0, 11.3.0
   Target Milestone|---                         |12.3
      Known to fail|                            |12.1.0
            Summary|Miscompilation involing -Os |[12/13 Regression]
                   |, -flto and                 |Miscompilation involing -Os
                   |-fno-strict-aliasing        |, -flto and
                   |                            |-fno-strict-aliasing

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

* [Bug tree-optimization/107467] [12/13 Regression] Miscompilation involing -Os , -flto and -fno-strict-aliasing
  2022-10-30 22:10 [Bug translation/107467] New: Miscompilation involing -Os , -flto and -fno-strict-aliasing volker.weissmann at gmx dot de
                   ` (2 preceding siblings ...)
  2022-10-30 23:38 ` [Bug tree-optimization/107467] [12/13 Regression] " pinskia at gcc dot gnu.org
@ 2022-10-30 23:39 ` pinskia at gcc dot gnu.org
  2022-10-30 23:39 ` pinskia at gcc dot gnu.org
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: pinskia at gcc dot gnu.org @ 2022-10-30 23:39 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Created attachment 53799
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=53799&action=edit
Testcase compile with -O2 -fno-strict-aliasing -flto

New self contained testcase.

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

* [Bug tree-optimization/107467] [12/13 Regression] Miscompilation involing -Os , -flto and -fno-strict-aliasing
  2022-10-30 22:10 [Bug translation/107467] New: Miscompilation involing -Os , -flto and -fno-strict-aliasing volker.weissmann at gmx dot de
                   ` (3 preceding siblings ...)
  2022-10-30 23:39 ` pinskia at gcc dot gnu.org
@ 2022-10-30 23:39 ` pinskia at gcc dot gnu.org
  2022-11-05 10:29 ` rguenth at gcc dot gnu.org
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: pinskia at gcc dot gnu.org @ 2022-10-30 23:39 UTC (permalink / raw)
  To: gcc-bugs

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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |needs-bisection
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2022-10-30
     Ever confirmed|0                           |1

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

* [Bug tree-optimization/107467] [12/13 Regression] Miscompilation involing -Os , -flto and -fno-strict-aliasing
  2022-10-30 22:10 [Bug translation/107467] New: Miscompilation involing -Os , -flto and -fno-strict-aliasing volker.weissmann at gmx dot de
                   ` (4 preceding siblings ...)
  2022-10-30 23:39 ` pinskia at gcc dot gnu.org
@ 2022-11-05 10:29 ` rguenth at gcc dot gnu.org
  2022-11-21 13:23 ` marxin at gcc dot gnu.org
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: rguenth at gcc dot gnu.org @ 2022-11-05 10:29 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |hubicka at gcc dot gnu.org

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
doesn't reproduce with -fwhole-program instead of -flto or with
-flto-partition=max added.  -fno-ipa-modref avoids the issue.

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

* [Bug tree-optimization/107467] [12/13 Regression] Miscompilation involing -Os , -flto and -fno-strict-aliasing
  2022-10-30 22:10 [Bug translation/107467] New: Miscompilation involing -Os , -flto and -fno-strict-aliasing volker.weissmann at gmx dot de
                   ` (5 preceding siblings ...)
  2022-11-05 10:29 ` rguenth at gcc dot gnu.org
@ 2022-11-21 13:23 ` marxin at gcc dot gnu.org
  2022-12-28 10:07 ` marxin at gcc dot gnu.org
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: marxin at gcc dot gnu.org @ 2022-11-21 13:23 UTC (permalink / raw)
  To: gcc-bugs

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

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Assignee|unassigned at gcc dot gnu.org      |marxin at gcc dot gnu.org
             Status|NEW                         |ASSIGNED
                 CC|                            |marxin at gcc dot gnu.org

--- Comment #5 from Martin Liška <marxin at gcc dot gnu.org> ---
Also related to ICF, where -fno-ipa-icf fixes that as well. Lemme take a look.

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

* [Bug tree-optimization/107467] [12/13 Regression] Miscompilation involing -Os , -flto and -fno-strict-aliasing
  2022-10-30 22:10 [Bug translation/107467] New: Miscompilation involing -Os , -flto and -fno-strict-aliasing volker.weissmann at gmx dot de
                   ` (6 preceding siblings ...)
  2022-11-21 13:23 ` marxin at gcc dot gnu.org
@ 2022-12-28 10:07 ` marxin at gcc dot gnu.org
  2023-01-04 17:29 ` [Bug tree-optimization/107467] [12/13 Regression] Miscompilation involing -Os , -flto and -fno-strict-aliasing since r12-656-ga564da506f52be66 hubicka at gcc dot gnu.org
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: marxin at gcc dot gnu.org @ 2022-12-28 10:07 UTC (permalink / raw)
  To: gcc-bugs

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

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Assignee|marxin at gcc dot gnu.org          |unassigned at gcc dot gnu.org
           Keywords|needs-bisection             |
             Status|ASSIGNED                    |NEW

--- Comment #6 from Martin Liška <marxin at gcc dot gnu.org> ---
Running that under valgrind I see it started with r12-656-ga564da506f52be66:

==13643== Conditional jump or move depends on uninitialised value(s)
==13643==    at 0x401148: bool compare_pairs<SomeClass*>(pair<SomeClass*>
const&, pair<SomeClass*> const&) (pr107467-2.C:12)
==13643==    by 0x401176: Combined<OtherClass>::clashy() [clone .isra.0]
(pr107467-2.C:23)
==13643==    by 0x4011B2: other_func() (pr107467-2.C:40)
==13643==    by 0x4011ED: main (pr107467-2.C:48)

So I guess it might be something in between DSE and aliasing info investigated
by IPA modref.

@Honza: Can you take a look?

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

* [Bug tree-optimization/107467] [12/13 Regression] Miscompilation involing -Os , -flto and -fno-strict-aliasing since r12-656-ga564da506f52be66
  2022-10-30 22:10 [Bug translation/107467] New: Miscompilation involing -Os , -flto and -fno-strict-aliasing volker.weissmann at gmx dot de
                   ` (7 preceding siblings ...)
  2022-12-28 10:07 ` marxin at gcc dot gnu.org
@ 2023-01-04 17:29 ` hubicka at gcc dot gnu.org
  2023-01-13 11:47 ` rguenth at gcc dot gnu.org
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: hubicka at gcc dot gnu.org @ 2023-01-04 17:29 UTC (permalink / raw)
  To: gcc-bugs

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

Jan Hubicka <hubicka at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |hubicka at gcc dot gnu.org

--- Comment #7 from Jan Hubicka <hubicka at gcc dot gnu.org> ---
mine.

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

* [Bug tree-optimization/107467] [12/13 Regression] Miscompilation involing -Os , -flto and -fno-strict-aliasing since r12-656-ga564da506f52be66
  2022-10-30 22:10 [Bug translation/107467] New: Miscompilation involing -Os , -flto and -fno-strict-aliasing volker.weissmann at gmx dot de
                   ` (8 preceding siblings ...)
  2023-01-04 17:29 ` [Bug tree-optimization/107467] [12/13 Regression] Miscompilation involing -Os , -flto and -fno-strict-aliasing since r12-656-ga564da506f52be66 hubicka at gcc dot gnu.org
@ 2023-01-13 11:47 ` rguenth at gcc dot gnu.org
  2023-01-13 22:08 ` hubicka at ucw dot cz
  2023-05-08 12:25 ` [Bug tree-optimization/107467] [12/13/14 " rguenth at gcc dot gnu.org
  11 siblings, 0 replies; 13+ messages in thread
From: rguenth at gcc dot gnu.org @ 2023-01-13 11:47 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|2022-10-30 00:00:00         |2023-1-13
           Priority|P3                          |P2

--- Comment #8 from Richard Biener <rguenth at gcc dot gnu.org> ---
> diff -u a.ltrans0.ltrans.115t.vrp1 a.ltrans0.ltrans.116t.dse2
...
 __attribute__((noinline, optimize ("strict-aliasing")))
 bool clashy.isra ()
 {
@@ -90,8 +64,6 @@
   bool _1;

   <bb 2> [local count: 1073741824]:
-  D.5191 = get_const.isra ();
-  D.5190 = get_const.isra ();
   _1 = compare_pairs (&D.5190, &D.5191);

so it's ICFed compare_pairs having modref TBAA info that makes the
stores dead.  I suppose ICF needs to reset / alter the modref summaries?

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

* [Bug tree-optimization/107467] [12/13 Regression] Miscompilation involing -Os , -flto and -fno-strict-aliasing since r12-656-ga564da506f52be66
  2022-10-30 22:10 [Bug translation/107467] New: Miscompilation involing -Os , -flto and -fno-strict-aliasing volker.weissmann at gmx dot de
                   ` (9 preceding siblings ...)
  2023-01-13 11:47 ` rguenth at gcc dot gnu.org
@ 2023-01-13 22:08 ` hubicka at ucw dot cz
  2023-05-08 12:25 ` [Bug tree-optimization/107467] [12/13/14 " rguenth at gcc dot gnu.org
  11 siblings, 0 replies; 13+ messages in thread
From: hubicka at ucw dot cz @ 2023-01-13 22:08 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #9 from Jan Hubicka <hubicka at ucw dot cz> ---
> 
> so it's ICFed compare_pairs having modref TBAA info that makes the
> stores dead.  I suppose ICF needs to reset / alter the modref summaries?

Well, matching that ICF does should be enough to verify that modref
sumaries are same.  Modref only does what would happen after inlining
and ICF should be safe WRT both modref and inlining.

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

* [Bug tree-optimization/107467] [12/13/14 Regression] Miscompilation involing -Os , -flto and -fno-strict-aliasing since r12-656-ga564da506f52be66
  2022-10-30 22:10 [Bug translation/107467] New: Miscompilation involing -Os , -flto and -fno-strict-aliasing volker.weissmann at gmx dot de
                   ` (10 preceding siblings ...)
  2023-01-13 22:08 ` hubicka at ucw dot cz
@ 2023-05-08 12:25 ` rguenth at gcc dot gnu.org
  11 siblings, 0 replies; 13+ messages in thread
From: rguenth at gcc dot gnu.org @ 2023-05-08 12:25 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|12.3                        |12.4

--- Comment #10 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 12.3 is being released, retargeting bugs to GCC 12.4.

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

end of thread, other threads:[~2023-05-08 12:25 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-30 22:10 [Bug translation/107467] New: Miscompilation involing -Os , -flto and -fno-strict-aliasing volker.weissmann at gmx dot de
2022-10-30 23:22 ` [Bug tree-optimization/107467] " pinskia at gcc dot gnu.org
2022-10-30 23:36 ` pinskia at gcc dot gnu.org
2022-10-30 23:38 ` [Bug tree-optimization/107467] [12/13 Regression] " pinskia at gcc dot gnu.org
2022-10-30 23:39 ` pinskia at gcc dot gnu.org
2022-10-30 23:39 ` pinskia at gcc dot gnu.org
2022-11-05 10:29 ` rguenth at gcc dot gnu.org
2022-11-21 13:23 ` marxin at gcc dot gnu.org
2022-12-28 10:07 ` marxin at gcc dot gnu.org
2023-01-04 17:29 ` [Bug tree-optimization/107467] [12/13 Regression] Miscompilation involing -Os , -flto and -fno-strict-aliasing since r12-656-ga564da506f52be66 hubicka at gcc dot gnu.org
2023-01-13 11:47 ` rguenth at gcc dot gnu.org
2023-01-13 22:08 ` hubicka at ucw dot cz
2023-05-08 12:25 ` [Bug tree-optimization/107467] [12/13/14 " rguenth 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).