https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112092
--- Comment #5 from JuzheZhong ---
Yes. I am agree that some arch prefer agnostic than undisturbed even with more
vsetvls. That's why I have post PR for asking whether we can have a option like
-mprefer-agosnotic.
https://github.com/riscv-non-
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112092
Kito Cheng changed:
What|Removed |Added
CC||kito at gcc dot gnu.org
--- Comment #4 fro
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111520
--- Comment #3 from CVS Commits ---
The master branch has been updated by Alexandre Oliva :
https://gcc.gnu.org/g:33d38b431cced81e575b1d17d36cb9e43d64b02b
commit r14-4936-g33d38b431cced81e575b1d17d36cb9e43d64b02b
Author: Alexandre Oliva
Date:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110170
--- Comment #22 from CVS Commits ---
The releases/gcc-12 branch has been updated by hongtao Liu
:
https://gcc.gnu.org/g:1e36498710f9ca84fefa578863cf505f484601b1
commit r12-9944-g1e36498710f9ca84fefa578863cf505f484601b1
Author: liuhongt
Date:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112096
--- Comment #1 from Andrew Pinski ---
Note we already handle the bool case on the trunk.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112096
Bug ID: 112096
Summary: `(a || b) ? a : b` should be simplified to a
Product: gcc
Version: 14.0
Status: UNCONFIRMED
Keywords: missed-optimization
Severity: enhancement
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112095
Andrew Pinski changed:
What|Removed |Added
Last reconfirmed||2023-10-26
Status|UNCONFIRM
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112095
Bug ID: 112095
Summary: `((~x) & y) ^ (x | y)` is x
Product: gcc
Version: 14.0
Status: UNCONFIRMED
Keywords: missed-optimization
Severity: enhancement
Priority
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112094
Bug ID: 112094
Summary: `popcnt(a) == n | a != 0` should be simplified to
`a!=0 | n == 0`
Product: gcc
Version: 14.0
Status: UNCONFIRMED
Keywords: missed-optim
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102486
--- Comment #3 from Andrew Pinski ---
Rather:
```
int f2(unsigned y)
{
return (y&-y) != 0;
}
```
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112092
--- Comment #3 from Maciej W. Rozycki ---
Maybe I'm missing something, but the RVV spec has this for VSETVLI:
"The application specifies the total number of elements to be processed
(the application vector length or AVL) as a candidate value fo
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96433
--- Comment #6 from Andrew Pinski ---
Note what LLVM detects/matches is exactly:
(for unsigned types)
(A % B) <= A -> true
(A % B) > A -> true
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112093
Andrew Pinski changed:
What|Removed |Added
See Also||https://gcc.gnu.org/bugzill
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112093
Andrew Pinski changed:
What|Removed |Added
Severity|normal |enhancement
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112093
Bug ID: 112093
Summary: (X & Y) < X (unsigned) and (X & Y) != X should produce
the same code
Product: gcc
Version: 14.0
Status: UNCONFIRMED
Keywords: missed-op
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112092
--- Comment #2 from JuzheZhong ---
To demonstrate the idea, here is a simple example to make you easier understand
the idea:
https://godbolt.org/z/Gxzjv48Ec
#include "riscv_vector.h"
void foo(int32_t *in1, int32_t *in2, int32_t *in3, int32_t
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112092
JuzheZhong changed:
What|Removed |Added
CC||juzhe.zhong at rivai dot ai
--- Comment #1
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101590
--- Comment #9 from Andrew Pinski ---
Just an FYI the corrected and full version (which I will be submitting later
today or tomorrow morning) is:
/*
U & N <= U -> true
U & N > U -> false
U needs to be non-negative.
U | N < U ->
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112092
Bug ID: 112092
Summary: RISC-V: Wrong RVV code produced for vsetvl-11.c and
vsetvlmax-8.c
Product: gcc
Version: 14.0
Status: UNCONFIRMED
Keywords: wrong-code
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101631
--- Comment #6 from Nathaniel Shead ---
(In reply to Sam James from comment #5)
> Fixed for 14 then by the drive-by bit or is there something left?
It should be fixed now. The example in comment #2 is
g++.dg/cpp2a/constexpr-union2.C.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112091
Andrew Pinski changed:
What|Removed |Added
Resolution|--- |DUPLICATE
Status|UNCONFIRME
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111956
Andrew Pinski changed:
What|Removed |Added
CC||macro at orcam dot me.uk
--- Comment #1
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112091
Bug ID: 112091
Summary: rs6000: redefinition of 'constexpr long double
std::abs(long double)', while building libgm2
Product: gcc
Version: 14.0
Status: UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111326
Andrew Pinski changed:
What|Removed |Added
Last reconfirmed||2023-10-25
Ever confirmed|0
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105990
--- Comment #5 from Andrew Pinski ---
(In reply to Andrew Pinski from comment #4)
> `(2 >> _2) == 2` could be optimized to just `_2 == 0`.
> And then `_4` becomes `1` and then the conditional is optimized away and
> such.
Filed that as PR 11209
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112090
Andrew Pinski changed:
What|Removed |Added
Status|UNCONFIRMED |ASSIGNED
Assignee|unassigned
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112090
Bug ID: 112090
Summary: ``(1 >> X) != 0` pattern should be extended to support
other constants
Product: gcc
Version: 14.0
Status: UNCONFIRMED
Keywords: missed-
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104773
--- Comment #4 from Andrew Pinski ---
Created attachment 56314
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=56314&action=edit
testcase
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111969
--- Comment #5 from Patrick O'Neill ---
More info:
QEMU v8.1.0
glibc 2.37
Only seen on rv32gcv
Fails locally/CI:
r14-4098-gbdb7d85dde5
Pass locally/CI:
r14-4098-gbdb7d85dde5
Fails on CI, passes locally (?):
r14-4876-g7b2984ad76c
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112089
Jonathan Wakely changed:
What|Removed |Added
Last reconfirmed||2023-10-25
Ever confirmed|0
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112089
Bug ID: 112089
Summary: std::shared_lock::unlock should throw
operation_not_permitted instead
resource_deadlock_would_occur
Product: gcc
Version: 14.0
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111462
--- Comment #7 from seurer at gcc dot gnu.org ---
I am still seeing the same failure on power.
tried with g:668c4c3783970e7adf0591396b6d0d5286cc0541, r14-4930-g668c4c3783970e
make -k check-gcc RUNTESTFLAGS="--target_board=unix'{-m32,-m64}'
tr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100291
--- Comment #8 from Patrick Palka ---
Maybe not exactly a dup, since this is an ICE-on-invalid testcase and strictly
speaking a regression. But it doesn't seem like a regression worth fixing in
release branches. And the underlying cause is the
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106086
Patrick Palka changed:
What|Removed |Added
See Also|https://gcc.gnu.org/bugzill |
|a/show_bug.cgi?id=1
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100291
Patrick Palka changed:
What|Removed |Added
See Also|https://gcc.gnu.org/bugzill |
|a/show_bug.cgi?id=1
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111602
Patrick Palka changed:
What|Removed |Added
CC||ppalka at gcc dot gnu.org
--- Comment #
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112088
Bug ID: 112088
Summary: [14 Regression] GCN target testing broken by "amdgcn:
add -march=gfx1030 EXPERIMENTAL"
Product: gcc
Version: 14.0
Status: UNCONFIRMED
S
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95448
--- Comment #3 from Andrew Pinski ---
ranger (EVRP) produces:
_1 = a_2(D) & 7;
if (_1 != 1)
goto ; [INV]
else
goto ; [INV]
_1 : [irange] int [0, 7] MASK 0x7 VALUE 0x0
2->3 (T) _1 : [irange] int [0, 0][2, 7] MASK 0x7 VAL
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104625
--- Comment #6 from anlauf at gcc dot gnu.org ---
Steve Lionel of Intel confirmed that the code is valid, and that if X is
polymorphic, so is (X):
community.intel.com/t5/Intel-Fortran-Compiler/SELECT-TYPE-statement-and-parenthesized-selector/m-p
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111969
--- Comment #4 from Patrick O'Neill ---
Thinking about it more this doesn't really make sense since AFAIK QEMU is
compiled with the host compiler and shouldn't be affected by the GCC version
that compiles large_2.exe.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111969
--- Comment #3 from Patrick O'Neill ---
These may be real failures that manifest in QEMU depending on the GCC used to
compile it.
I built qemu with r14-4098-gbdb7d85dde5 which caused the failures.
> QEMU_CPU=rv32,vlen=128,v=true,vext_spec=v1.0,
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111976
--- Comment #2 from Andrew Pinski ---
Note some file systems do have the concept of zero pages too.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90608
--- Comment #15 from Tamar Christina ---
(In reply to Mikael Morin from comment #14)
> Created attachment 56313 [details]
> inline minloc with mask
>
> This patch adds support for {min,max}loc with mask.
Awesome, thank you!
> It is not 100% te
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90608
Mikael Morin changed:
What|Removed |Added
Attachment #56094|0 |1
is obsolete|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111920
--- Comment #5 from Patrick Palka ---
(In reply to Jonathan Wakely from comment #4)
> N.B. this same ICE was affecting C++ too, several libstdc++ tests failed
> with -std=c++20, e.g.
>
> GLIBCXX_TESTSUITE_STDS=20 make check
> RUNTESTFLAGS=confo
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111645
--- Comment #6 from Steven Munroe ---
(In reply to Carl Love from comment #5)
> There are a couple of issues with the test case in the attachment. For
> example one of the tests is:
>
>
> static inline vui64_t
> vec_vsldbi_64 (vui64_t vra, vu
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111972
Andrew Pinski changed:
What|Removed |Added
Status|UNCONFIRMED |ASSIGNED
Keywords|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111235
--- Comment #5 from Luke Geeson ---
Thank you for fixing this, Wilco! I will now test this bug using the code
emitted by Godbolt.
Consider again the same source program. When run through gcc with the same
flags we get the ARM assembly test:
``
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111936
Jonathan Wakely changed:
What|Removed |Added
Resolution|--- |FIXED
Status|ASSIGNED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111936
--- Comment #13 from CVS Commits ---
The releases/gcc-12 branch has been updated by Jonathan Wakely
:
https://gcc.gnu.org/g:7804e65ed78b5529635934ca06fbf68521aad32d
commit r12-9942-g7804e65ed78b5529635934ca06fbf68521aad32d
Author: Jonathan Wak
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111698
Uroš Bizjak changed:
What|Removed |Added
Target|x86_64-*-* |x86-*-*
Target Milestone|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111698
--- Comment #4 from CVS Commits ---
The master branch has been updated by Uros Bizjak :
https://gcc.gnu.org/g:678e6c328c77db383431751bcfcf867b02369bd6
commit r14-4928-g678e6c328c77db383431751bcfcf867b02369bd6
Author: Uros Bizjak
Date: Wed O
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111936
--- Comment #12 from CVS Commits ---
The releases/gcc-13 branch has been updated by Jonathan Wakely
:
https://gcc.gnu.org/g:13ad7b1603f31b65e181780a29ada3f9a331bf8f
commit r13-7982-g13ad7b1603f31b65e181780a29ada3f9a331bf8f
Author: Jonathan Wak
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112087
Bug ID: 112087
Summary: gimple front end: Simple testcase with array fails to
round trip
Product: gcc
Version: 14.0
Status: UNCONFIRMED
Severity: normal
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112085
Bug ID: 112085
Summary: e1989
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c
Assignee: unassigned at
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112080
Bug ID: 112080
Summary: e1989
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: d
Assignee: ibuclaw at gd
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112084
Bug ID: 112084
Summary: e1989
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: boehm-gc
Assignee: unassi
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112078
Bug ID: 112078
Summary: e1989
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112082
Bug ID: 112082
Summary: e1989
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112076
Bug ID: 112076
Summary: e1989
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112086
Bug ID: 112086
Summary: e1989
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112081
Bug ID: 112081
Summary: e1989
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c
Assignee: unassigned at
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112083
Bug ID: 112083
Summary: e1989
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c
Assignee: unassigned at
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112072
Bug ID: 112072
Summary: e1989
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112079
Bug ID: 112079
Summary: e1989
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112074
Bug ID: 112074
Summary: e1989
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c
Assignee: unassigned at
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112077
Bug ID: 112077
Summary: e1989
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c
Assignee: unassigned at
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112069
Bug ID: 112069
Summary: e1989
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c
Assignee: unassigned at
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112071
Bug ID: 112071
Summary: e1989
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c
Assignee: unassigned at
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112075
Bug ID: 112075
Summary: e1989
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c
Assignee: unassigned at
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112073
Bug ID: 112073
Summary: e1989
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c
Assignee: unassigned at
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112070
Bug ID: 112070
Summary: e1989
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112068
Bug ID: 112068
Summary: e1989
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112067
Bug ID: 112067
Summary: e1989
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c
Assignee: unassigned at
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96503
--- Comment #8 from Siddhesh Poyarekar ---
(In reply to Martin Uecker from comment #7)
> For __builtin_with_access we probably only want to allow
> reducing the object size, while the 'extend_size' workaround
> used by systemd (cf comment #4) wo
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112064
Bug ID: 112064
Summary: bbb12
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: d
Assignee: ibuclaw at gd
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112061
Bug ID: 112061
Summary: bbb12
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112060
Bug ID: 112060
Summary: bbb12
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112065
Bug ID: 112065
Summary: bbb12
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112059
Bug ID: 112059
Summary: bbb12
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: d
Assignee: ibuclaw at gd
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112055
Bug ID: 112055
Summary: bbb12
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c
Assignee: unassigned at
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112066
Bug ID: 112066
Summary: bbb12
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112057
Bug ID: 112057
Summary: bbb12
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: d
Assignee: ibuclaw at gd
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112054
Bug ID: 112054
Summary: bbb12
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c
Assignee: unassigned at
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112062
Bug ID: 112062
Summary: bbb12
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: d
Assignee: ibuclaw at gd
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112056
Bug ID: 112056
Summary: bbb12
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112063
Bug ID: 112063
Summary: bbb12
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: bootstrap
Assignee: unass
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112053
Bug ID: 112053
Summary: bbb12
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112050
Bug ID: 112050
Summary: bbb12
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: d
Assignee: ibuclaw at gd
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112058
Bug ID: 112058
Summary: bbb12
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112052
Bug ID: 112052
Summary: bbb12
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c
Assignee: unassigned at
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112051
Bug ID: 112051
Summary: bbb12
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: d
Assignee: ibuclaw at gd
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112049
Bug ID: 112049
Summary: bbb12
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: d
Assignee: ibuclaw at gd
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112048
Bug ID: 112048
Summary: bbb12
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112047
Bug ID: 112047
Summary: bbb12
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: d
Assignee: ibuclaw at gd
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112046
Bug ID: 112046
Summary: a12
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned at
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112043
Bug ID: 112043
Summary: a12
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: bootstrap
Assignee: una
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112041
Bug ID: 112041
Summary: a12
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: d
Assignee: ibuclaw at
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112045
Bug ID: 112045
Summary: a12
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: d
Assignee: ibuclaw at
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112039
Bug ID: 112039
Summary: a12
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigne
1 - 100 of 201 matches
Mail list logo