https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111334
--- Comment #12 from Xi Ruoyao ---
(In reply to chenglulu from comment #11)
> (In reply to Xi Ruoyao from comment #10)
> > (In reply to Xi Ruoyao from comment #9)
> >
> > > (define_insn "di3_fake"
> > >[(set (match_operand:DI 0 "register_o
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111334
--- Comment #11 from chenglulu ---
(In reply to Xi Ruoyao from comment #10)
> (In reply to Xi Ruoyao from comment #9)
>
> > (define_insn "di3_fake"
> >[(set (match_operand:DI 0 "register_operand" "=r,&r,&r")
> > - (sign_extend:DI
> > -
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111334
--- Comment #10 from Xi Ruoyao ---
(In reply to Xi Ruoyao from comment #9)
> (define_insn "di3_fake"
>[(set (match_operand:DI 0 "register_operand" "=r,&r,&r")
> - (sign_extend:DI
> - (any_div:SI (match_operand:DI 1 "register_oper
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111334
--- Comment #9 from Xi Ruoyao ---
(In reply to chenglulu from comment #7)
> (In reply to Xi Ruoyao from comment #6)
> > (In reply to Xi Ruoyao from comment #5)
> > > (In reply to chenglulu from comment #3)
> > > > This involves the template di3_
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111334
--- Comment #8 from chenglulu ---
(In reply to Andrew Pinski from comment #4)
> (In reply to chenglulu from comment #3)
> > This involves the template di3_fake:
> > (define_insn "di3_fake"
> > [(set (match_operand:DI 0 "register_operand" "=r,&
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111306
--- Comment #4 from Hongtao.liu ---
A related PR111335 for fmaddcph , similar but not the same, PR111335 is due to
precision difference for complex _Float16 fma, fmaddcph a, b, c is not equal to
fmaddcph b, a, c
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111334
--- Comment #7 from chenglulu ---
(In reply to Xi Ruoyao from comment #6)
> (In reply to Xi Ruoyao from comment #5)
> > (In reply to chenglulu from comment #3)
> > > This involves the template di3_fake:
> > > (define_insn "di3_fake"
> > > [(se
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111335
Bug ID: 111335
Summary: fmaddpch seems not commutative for operands[1] and
operands[2] due to precision loss
Product: gcc
Version: 14.0
Status: UNCONFIRMED
Sev
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111331
--- Comment #11 from Andrew Pinski ---
Created attachment 55853
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=55853&action=edit
Patch which I am testing
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111329
--- Comment #5 from rsandifo at gcc dot gnu.org
---
Yeah, rewriting it to an inline function sounds like the right
fix to me FWIW. The call looks valid.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111331
--- Comment #10 from Andrew Pinski ---
And here is the fix for phiopt:
```
diff --git a/gcc/tree-ssa-phiopt.cc b/gcc/tree-ssa-phiopt.cc
index 9993bbe5b76..9b44ca9758a 100644
--- a/gcc/tree-ssa-phiopt.cc
+++ b/gcc/tree-ssa-phiopt.cc
@@ -2073,7 +2
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107800
--- Comment #6 from Amatul Adeeba ---
I mean even after trying the typo that is mentioned above, the error still
occurs.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111331
--- Comment #9 from Andrew Pinski ---
Actually this is the fix for the match pattern:
```
diff --git a/gcc/match.pd b/gcc/match.pd
index 8c24dae71cd..c7b6db4b543 100644
--- a/gcc/match.pd
+++ b/gcc/match.pd
@@ -5438,11 +5438,11 @@ DEFINE_INT_AND
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111334
Xi Ruoyao changed:
What|Removed |Added
Target Milestone|--- |14.0
Summary|ICE is reported dur
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111334
--- Comment #6 from Xi Ruoyao ---
(In reply to Xi Ruoyao from comment #5)
> (In reply to chenglulu from comment #3)
> > This involves the template di3_fake:
> > (define_insn "di3_fake"
> > [(set (match_operand:DI 0 "register_operand" "=r,&r,&r
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111334
Xi Ruoyao changed:
What|Removed |Added
Status|UNCONFIRMED |NEW
Ever confirmed|0
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111332
--- Comment #9 from d_vampile ---
(In reply to Andrew Pinski from comment #8)
> (In reply to d_vampile from comment #7)
> > In terms of runtime, this code is the best.
>
> Depends on the core
> What does -mtune=native provide for the core
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111332
--- Comment #8 from Andrew Pinski ---
(In reply to d_vampile from comment #7)
> In terms of runtime, this code is the best.
Depends on the core
What does -mtune=native provide for the core which you are running on?
Also what core are you t
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111334
Andrew Pinski changed:
What|Removed |Added
Component|rtl-optimization|target
--- Comment #4 from Andrew Pinsk
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111334
--- Comment #3 from chenglulu ---
This involves the template di3_fake:
(define_insn "di3_fake"
[(set (match_operand:DI 0 "register_operand" "=r,&r,&r")
(sign_extend:DI
(any_div:SI (match_operand:DI 1 "register_operand" "r,r,0
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111334
--- Comment #2 from chenglulu ---
This problem occurred after adding the r14-3511 optimization.
However, during the debugging process, it was discovered that it was due to the
attempt to generate rtx during the combine pass optimization.
(set
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111306
--- Comment #3 from Hongtao.liu ---
A patch is posted at
https://gcc.gnu.org/pipermail/gcc-patches/2023-September/629650.html
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111334
--- Comment #1 from chenglulu ---
$ gcc test.c -o - -S -O1
test.c: 在函数‘add_startpgm’中:
test.c:33:1: 编译器内部错误:在 simplify_subreg 中,于 simplify-rtx.cc:7538
33 | }
| ^
0x13506f4 simplify_context::simplify_subreg(machine_mode, rtx_def*,
machi
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111334
Bug ID: 111334
Summary: ICE is reported during the combine pass optimization
Product: gcc
Version: rust/master
Status: UNCONFIRMED
Severity: normal
Priority: P3
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111332
--- Comment #7 from d_vampile ---
(In reply to Andrew Pinski from comment #3)
> GCC 11+ produces:
> .L3:
> vmovdqu (%rsi), %ymm2
> vmovdqu 32(%rsi), %ymm1
> subq$-128, %rdi
> subq$-128, %rsi
> vmov
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111332
--- Comment #6 from d_vampile ---
GCC 7.3.0 produces:
extern __inline __m256i __attribute__((__gnu_inline__, __always_inline__,
__artificial__))
_mm256_loadu_si256 (__m256i_u const *__P)
{
return *__P;
401170: c5 fa 6f 1e v
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111332
--- Comment #5 from d_vampile ---
According to the analysis, the following two prs may cause the preceding
problems:
PR1:https://github.com/gcc-mirror/gcc/commit/dd9b529f08c3c6064c37234922d298336d78caf7
PR2:https://github.com/gcc-mirror/gcc/comm
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111331
--- Comment #8 from Andrew Pinski ---
The tree-ssa-phiopt.cc code is much more complex.
But not testing arg_true/arg_false against alt_larger/alt_smaller does fix the
issue.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111306
Andrew Pinski changed:
What|Removed |Added
Ever confirmed|0 |1
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111333
Andrew Pinski changed:
What|Removed |Added
Resolution|--- |DUPLICATE
Status|UNCONFIRME
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111306
Andrew Pinski changed:
What|Removed |Added
CC||crazylht at gmail dot com
--- Comment #
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111333
--- Comment #3 from Andrew Pinski ---
Isn't this a dup of bug 111306 ?
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111332
Andrew Pinski changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111333
--- Comment #2 from Hongtao.liu ---
The test failed since GCC12 when the pattern is added
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111333
--- Comment #1 from Hongtao.liu ---
fmulcph/fmaddcph is commutative for operands[1] and operands[2], but
fcmulcph/fcmaddcph is not, since it's Complex conjugate operations.
Below change fixes the issue.
diff --git a/gcc/config/i386/sse.md b/gc
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111332
Andrew Pinski changed:
What|Removed |Added
Known to work||6.4.0
Known to fail|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111333
Bug ID: 111333
Summary: Runtime failure for fcmulcph instrinsic
Product: gcc
Version: 14.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: target
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111332
--- Comment #2 from d_vampile ---
gcc7.3.0 program use vmovups and vmovups instructions , but gcc10.3.0 program
only use vmovups instructions.In addition, the order of the two assembly
instructions is not consistent.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111332
d_vampile changed:
What|Removed |Added
CC||d_vampile at 163 dot com
--- Comment #1 fro
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111332
Bug ID: 111332
Summary: Using GCC7.3.0 and GCC10.3.0 to compile the same test
case, assembler file instructions are different and
performance fallback is obvious.
Product:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111331
Andrew Pinski changed:
What|Removed |Added
Keywords|needs-bisection |
--- Comment #7 from Andrew Pinski ---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111331
Andrew Pinski changed:
What|Removed |Added
Status|NEW |ASSIGNED
Assignee|unassigned
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=48
--- Comment #2 from Andrew Pinski ---
The one which I had missed:
_Bool f(int x, int y, int w, int z)
{
_Bool a = z == w;
_Bool b = x == y;
return (a & !b) | (a ^ b); // a ^ b
}
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110529
David Malcolm changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110529
--- Comment #4 from CVS Commits ---
The master branch has been updated by David Malcolm :
https://gcc.gnu.org/g:1b761fede44afac5fa72e77caced9beda93fb381
commit r14-3796-g1b761fede44afac5fa72e77caced9beda93fb381
Author: David Malcolm
Date: T
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111331
Andrew Pinski changed:
What|Removed |Added
Known to fail||14.0
--- Comment #5 from Andrew Pinski
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111331
--- Comment #4 from Andrew Pinski ---
Reduced testcase:
```
int a;
int b;
int main() {
int d = b+30;
{
int t;
if (d < 29)
t = 29;
else
t = (d > 28) ? 28 : d;
a = t;
}
volatile int t = a;
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111331
--- Comment #3 from Andrew Pinski ---
For the trunk the problem is in match (and phiopt)
Match pattern:
/* Optimize (a CMP CST1) ? max : a */
r6-7425-ga9fee7cdc3c62d0e51730b6a9814909c557d3070 most likely introduced it for
GCC 6.
For the trun
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111331
--- Comment #2 from Andrew Pinski ---
For the trunk:
```
phiopt match-simplify trying:
_3 > 28 ? _9 : 29
Applying pattern match.pd:5446, gimple-match-3.cc:3125
phiopt match-simplify back:
_5 = MAX_EXPR <_9, 29>;
result: _5
accepted the
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110830
--- Comment #3 from CVS Commits ---
The trunk branch has been updated by Benjamin Priour :
https://gcc.gnu.org/g:7d2274b9e346f44f8f6598b9dbb9fa95259274a2
commit r14-3794-g7d2274b9e346f44f8f6598b9dbb9fa95259274a2
Author: benjamin priour
Date:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102317
--- Comment #12 from qinzhao at gcc dot gnu.org ---
(In reply to Kees Cook from comment #11)
> The trouble with "optimize" is that it just doesn't work. The kernel has
> banned its use because it results in all other optimization options being
>
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111331
Andrew Pinski changed:
What|Removed |Added
Component|c |tree-optimization
Ever confirmed|0
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111331
Bug ID: 111331
Summary: Wrong code at -O1 on x86_64-linux-gnu since
Product: gcc
Version: 14.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108957
--- Comment #4 from anlauf at gcc dot gnu.org ---
Mikael,
are you still onto it?
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111330
Bug ID: 111330
Summary: [13 Regression] Bootstrap failure building SeqFile.lo
Product: gcc
Version: 13.2.1
Status: UNCONFIRMED
Severity: normal
Priority: P3
Com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111329
Jakub Jelinek changed:
What|Removed |Added
CC||rsandifo at gcc dot gnu.org
--- Comment
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110875
Andrew Macleod changed:
What|Removed |Added
Resolution|--- |FIXED
Status|NEW
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111329
--- Comment #3 from seurer at gcc dot gnu.org ---
It is the one that appears to trigger this failure, though. And as for being a
duplicate of that other one I see this on both powerpc64 BE and LE.
git bisect log
git bisect start
# good: [1b4c7
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110875
--- Comment #3 from CVS Commits ---
The master branch has been updated by Andrew Macleod :
https://gcc.gnu.org/g:cf2ae3fff4ee9bf884b122ee6cd83bffd791a16f
commit r14-3792-gcf2ae3fff4ee9bf884b122ee6cd83bffd791a16f
Author: Andrew MacLeod
Date:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111324
Andrew Pinski changed:
What|Removed |Added
Status|UNCONFIRMED |NEW
Ever confirmed|0
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111328
Andrew Pinski changed:
What|Removed |Added
Target Milestone|--- |14.0
Component|c
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111329
--- Comment #2 from David Malcolm ---
Possibly another duplicate of bug 110483.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97122
anlauf at gcc dot gnu.org changed:
What|Removed |Added
Keywords||rejects-valid
Sta
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111226
Patrick Palka changed:
What|Removed |Added
Keywords||accepts-invalid,
|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111329
Jakub Jelinek changed:
What|Removed |Added
CC||dmalcolm at gcc dot gnu.org
--- Comment
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83077
--- Comment #19 from Iain Sandoe ---
(In reply to François Dumont from comment #17)
> (In reply to Iain Sandoe from comment #15)
Your proposed patch for the friend issue does fix the libstdc++ cases for my
Darwin patchset.
> > many of the c++ f
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111329
Bug ID: 111329
Summary: [14 regression]
gcc.dg/analyzer/out-of-bounds-diagram-1-debug.c fails
after r14-3745-g4f4fa2501186e4
Product: gcc
Version: 14.0
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111274
sandra at gcc dot gnu.org changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111274
--- Comment #13 from CVS Commits ---
The master branch has been updated by Sandra Loosemore :
https://gcc.gnu.org/g:ab4bdad49716eb1c60e22e0e617d5eb56b0bac6f
commit r14-3791-gab4bdad49716eb1c60e22e0e617d5eb56b0bac6f
Author: Sandra Loosemore
Da
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83077
--- Comment #18 from Iain Sandoe ---
for changes to libstdc++ or the FE I usually run "make check-c++" which does
the library (plus the libgomp and itm deps) and the FE.
My guess is that the FE is referencing something that needs to have an inli
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83077
--- Comment #17 from François Dumont ---
(In reply to Iain Sandoe from comment #15)
>
> many of the c++ fails are of this form:
>
> contracts-tmpl-spec1.C:(.text+0x6f): undefined reference to
> `handle_contract_violation(std::experimental::cont
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83077
--- Comment #16 from Iain Sandoe ---
(In reply to François Dumont from comment #14)
> Good news then.
>
> On my side I only had some failures due to a faulty friend declaration in
> gnu-versioned-namespace mode in for which I've submitted a pat
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83077
--- Comment #15 from Iain Sandoe ---
(In reply to Iain Sandoe from comment #13)
> (In reply to Iain Sandoe from comment #12)
> > (In reply to Iain Sandoe from comment #11)
> > > (In reply to François Dumont from comment #10)
> > > > This is becau
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83077
--- Comment #14 from François Dumont ---
Good news then.
On my side I only had some failures due to a faulty friend declaration in
gnu-versioned-namespace mode in for which I've submitted a patch:
https://gcc.gnu.org/pipermail/libstdc++/2023-Au
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111274
--- Comment #12 from sandra at gcc dot gnu.org ---
Improved and tested patch posted here:
https://gcc.gnu.org/pipermail/gcc-patches/2023-September/629616.html
IIUC the temporaries introduced in non-full-expressions are bound in a block
that enc
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111044
--- Comment #1 from Tobias Burnus ---
Additionally: OpenMP states for omp_init_allocator:
"if an allocator based on the requirements cannot be created then the special
omp_null_allocator handle is returned."
libgomp's routine currently only re
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109948
anlauf at gcc dot gnu.org changed:
What|Removed |Added
Target Milestone|13.2|13.3
--- Comment #23 from an
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111321
anlauf at gcc dot gnu.org changed:
What|Removed |Added
CC||anlauf at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109948
anlauf at gcc dot gnu.org changed:
What|Removed |Added
CC||alexandre.poux at coria dot f
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111328
Bug ID: 111328
Summary: ICE: verify_flow_info failed since
r14-3459-g0c78240fd7d
Product: gcc
Version: 14.0
Status: UNCONFIRMED
Severity: normal
Prio
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111263
--- Comment #2 from seurer at gcc dot gnu.org ---
No, that is not failing.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110773
Wilco changed:
What|Removed |Added
CC||wilco at gcc dot gnu.org
--- Comment #2 from Wi
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95751
Wilco changed:
What|Removed |Added
CC||wilco at gcc dot gnu.org
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111225
--- Comment #4 from CVS Commits ---
The master branch has been updated by Vladimir Makarov :
https://gcc.gnu.org/g:f7bca44d97ad01b39f9d6e7809df7bf517eeb2fb
commit r14-3783-gf7bca44d97ad01b39f9d6e7809df7bf517eeb2fb
Author: Vladimir N. Makarov
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111326
Andrew Pinski changed:
What|Removed |Added
Target Milestone|--- |14.0
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111327
Bug ID: 111327
Summary: std::bind_front doesn't perfectly forward according to
value category of the call wrapper object
Product: gcc
Version: 14.0
Status: UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111321
Patrick Kopper changed:
What|Removed |Added
CC||kopper at iag dot
uni-stuttgart.de
--
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107800
--- Comment #5 from Jonathan Wakely ---
What is not working?
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108827
--- Comment #4 from Jonathan Wakely ---
The new bind_back call wrapper still needs to be added (which will need to be
done before https://wg21.link/p2714r1 can be implemented for C++26).
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111326
Bug ID: 111326
Summary: [14 Regression] Dead Code Elimination Regression since
r14-376-g47a76439911
Product: gcc
Version: 14.0
Status: UNCONFIRMED
Severity: no
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111315
Xi Ruoyao changed:
What|Removed |Added
Ever confirmed|0 |1
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107800
Amatul Adeeba changed:
What|Removed |Added
CC||amatuladeeba at gmail dot com
--- Comme
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111315
Xi Ruoyao changed:
What|Removed |Added
CC||xry111 at gcc dot gnu.org
--- Comment #2 fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110277
Kito Cheng changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110299
Kito Cheng changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111037
Kito Cheng changed:
What|Removed |Added
Resolution|--- |FIXED
Status|UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111074
Kito Cheng changed:
What|Removed |Added
Resolution|--- |FIXED
Status|UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111323
Xi Ruoyao changed:
What|Removed |Added
Resolution|--- |INVALID
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110560
Kito Cheng changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109773
Kito Cheng changed:
What|Removed |Added
Resolution|--- |FIXED
Status|UNCONFIRMED
1 - 100 of 125 matches
Mail list logo