https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99190
Bug ID: 99190
Summary: Undefined behaviour in libubsan
Product: gcc
Version: 11.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: sanitizer
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99190
--- Comment #1 from Jakub Jelinek ---
It is UB only in C++17 or earlier, so one way to "fix" it is build libubsan
with -std=gnu++20.
Or the SIntMax(Val) << ExtraBits >> ExtraBits can be replaced by
SIntMax(UIntMax(Val) << ExtraBits) >> ExtraBits.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99165
--- Comment #6 from CVS Commits ---
The master branch has been updated by Richard Biener :
https://gcc.gnu.org/g:8a8eee6bdb906788992622715bf97aff984ac989
commit r11-7317-g8a8eee6bdb906788992622715bf97aff984ac989
Author: Richard Biener
Date:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99165
Richard Biener changed:
What|Removed |Added
Resolution|--- |FIXED
Status|ASSIGNED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99171
Richard Biener changed:
What|Removed |Added
Target Milestone|--- |10.3
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99172
Richard Biener changed:
What|Removed |Added
Keywords||build
--- Comment #1 from Richard Biene
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99173
Richard Biener changed:
What|Removed |Added
Ever confirmed|0 |1
Summary|new test case
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99178
Richard Biener changed:
What|Removed |Added
Ever confirmed|0 |1
Status|UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99182
--- Comment #1 from Richard Biener ---
I guess it's simply a too similar distance between vt and A
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99178
Jakub Jelinek changed:
What|Removed |Added
CC||jakub at gcc dot gnu.org,
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99191
Bug ID: 99191
Summary: sanitizer detects undefined behaviour in libgfortran
Product: gcc
Version: 11.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Componen
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99192
Bug ID: 99192
Summary: A wrong Aggregate initialization for a union with a
variant member of non-aggregate class type
Product: gcc
Version: 10.2.0
Status: UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99181
--- Comment #1 from Jakub Jelinek ---
static _GLIBCXX_CONSTEXPR bool
lt(const char_type& __c1, const char_type& __c2) _GLIBCXX_NOEXCEPT
{
// LWG 467.
return (static_cast(__c1)
< static_cast(__c2))
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99168
Martin Liška changed:
What|Removed |Added
Assignee|unassigned at gcc dot gnu.org |marxin at gcc dot
gnu.org
Eve
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99190
Martin Liška changed:
What|Removed |Added
Ever confirmed|0 |1
Status|UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99180
Martin Liška changed:
What|Removed |Added
CC||jason at gcc dot gnu.org,
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99189
Martin Liška changed:
What|Removed |Added
Ever confirmed|0 |1
Status|UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99188
Martin Liška changed:
What|Removed |Added
Ever confirmed|0 |1
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99188
--- Comment #3 from zhangyuntao ---
Created attachment 50230
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=50230&action=edit
PoC
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99189
--- Comment #2 from zhangyuntao ---
Created attachment 50231
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=50231&action=edit
PoC
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99193
Bug ID: 99193
Summary: Bogus "should have been deallocated with 'free' but
was deallocated with 'realloc' [CWE-762]
[-Werror=analyzer-mismatching-deallocation]"
Product: gcc
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99193
--- Comment #1 from Richard W.M. Jones ---
Created attachment 50232
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=50232&action=edit
preprocessed source (xz compressed)
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99189
Martin Liška changed:
What|Removed |Added
Status|WAITING |NEW
Keywords|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99188
Martin Liška changed:
What|Removed |Added
Status|WAITING |NEW
Keywords|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99193
Richard W.M. Jones changed:
What|Removed |Added
Version|unknown |11.0
--- Comment #2 from Richard W.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99193
--- Comment #3 from Richard W.M. Jones ---
This seems to be the same thing at a different place in the code:
https://github.com/libguestfs/libguestfs/blob/f19fd566f6387ce7e4d82409528c9dde374d25e0/df/main.c#L404
CC virt_df-main.o
main.c:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99194
Bug ID: 99194
Summary: [11 Regression] ICE in force_constant_size, at
gimplify.c:733 since r11-38-g375a77925c320a27
Product: gcc
Version: 11.0
Status: UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99194
Martin Liška changed:
What|Removed |Added
Known to work||10.2.0
Known to fail|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99194
Martin Liška changed:
What|Removed |Added
Target Milestone|--- |11.0
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86487
avieira at gcc dot gnu.org changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99195
Bug ID: 99195
Summary: Optimise away vec_concat of 64-bit AdvancedSIMD
operations with zeroes in aarch64
Product: gcc
Version: unknown
Status: UNCONFIRMED
Keywo
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99027
--- Comment #5 from CVS Commits ---
The releases/gcc-10 branch has been updated by Tobias Burnus
:
https://gcc.gnu.org/g:700dcc60b5646cc64ae3ba72a79a7542b4902b50
commit r10-9380-g700dcc60b5646cc64ae3ba72a79a7542b4902b50
Author: Tobias Burnus
D
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99196
Bug ID: 99196
Summary: GCC analyzer doesn't know that error (code != 0, ...)
exits the program
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: norma
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99193
--- Comment #4 from Richard W.M. Jones ---
And another:
https://github.com/libguestfs/libguestfs/blob/f19fd566f6387ce7e4d82409528c9dde374d25e0/daemon/debug.c#L115
debug.c: In function 'debug_help':
debug.c:129:9: error: 'r' should have been deal
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99027
--- Comment #6 from Tobias Burnus ---
Now also FIXED for the GCC 10 branch.
(In reply to Andrew Burgess from comment #4)
> Can confirm that with latest GCC HEAD I am now seeing the results that I
> expect. Thanks for the quick fix.
:-) You are
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99183
--- Comment #1 from Ev Drikos ---
It turns out that the title isn't very accurate. It's a compile time error!
Ev. Drikos
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99197
Bug ID: 99197
Summary: Built-ins for packing/unpacking __ibm128 not
documented
Product: gcc
Version: 11.0
Status: UNCONFIRMED
Keywords: documentation
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99171
--- Comment #2 from CVS Commits ---
The master branch has been updated by Tobias Burnus :
https://gcc.gnu.org/g:e9b34037cdd196ab912a7ac3358f8a8d3e307e92
commit r11-7320-ge9b34037cdd196ab912a7ac3358f8a8d3e307e92
Author: Tobias Burnus
Date: Mo
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99198
Bug ID: 99198
Summary: when combinating nested function and
__builtin_call_with_static_chain, optimization
triggers an internal compiler error (verify_gimple)
Product: gcc
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99194
--- Comment #1 from Richard Biener ---
Isn't this a dup of PR99122 (the IPA-CP case)?
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99188
--- Comment #5 from zhangyuntao ---
“Ok, the input is a garbage.”
Do you mean the input is not a crash to cxxfilt? Why does the program crash?
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99198
Richard Biener changed:
What|Removed |Added
Ever confirmed|0 |1
Status|UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99188
--- Comment #6 from Martin Liška ---
(In reply to zhangyuntao from comment #5)
> “Ok, the input is a garbage.”
> Do you mean the input is not a crash to cxxfilt? Why does the program crash?
It likely makes cxxfilt crashing. I'm just saying it's
"dmalcolm at gcc dot gnu.org via Gcc-bugs"
writes:
> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99126
>
> --- Comment #8 from David Malcolm ---
> (In reply to CVS Commits from comment #6)
>> The master branch has been updated by David Malcolm :
>>
>> https://gcc.gnu.org/g:b258e263e0d74ca1f76a
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99126
--- Comment #9 from Andrea Corallo ---
"dmalcolm at gcc dot gnu.org via Gcc-bugs"
writes:
> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99126
>
> --- Comment #8 from David Malcolm ---
> (In reply to CVS Commits from comment #6)
>> The master
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99174
Nathan Sidwell changed:
What|Removed |Added
Assignee|unassigned at gcc dot gnu.org |nathan at gcc dot
gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98791
--- Comment #4 from CVS Commits ---
The master branch has been updated by Andre Simoes Dias Vieira
:
https://gcc.gnu.org/g:4c31a3a6d31b6214ea774d403bf8ab7ebe1ea862
commit r11-7321-g4c31a3a6d31b6214ea774d403bf8ab7ebe1ea862
Author: Andre Vieira
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99171
--- Comment #3 from CVS Commits ---
The releases/gcc-10 branch has been updated by Tobias Burnus
:
https://gcc.gnu.org/g:08f43c8c98196b2c9b9476aa20b36a3ee629b3a1
commit r10-9381-g08f43c8c98196b2c9b9476aa20b36a3ee629b3a1
Author: Tobias Burnus
D
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99171
--- Comment #5 from Tobias Burnus ---
(In reply to Tobias Burnus from comment #4)
> FIXED – both on mainline (GCC 11) and on the GCC 11 branch.
... and GCC 10 (!) branch.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99171
Tobias Burnus changed:
What|Removed |Added
CC||burnus at gcc dot gnu.org
Keyw
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99199
Bug ID: 99199
Summary: [9/10/11 Regression] Very large boolean expression
leads to quite a few return statements
Product: gcc
Version: unknown
Status: UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99199
Thomas Koenig changed:
What|Removed |Added
Version|unknown |11.0
Target Milestone|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99138
Tobias Burnus changed:
What|Removed |Added
CC||burnus at gcc dot gnu.org
Keyw
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99181
Jakub Jelinek changed:
What|Removed |Added
Status|UNCONFIRMED |ASSIGNED
Assignee|unassigned a
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99200
Bug ID: 99200
Summary: __PRETTY_FUNCTION__ used as template parameter causes
internal compiler error (segmentation fault)
Product: gcc
Version: 10.2.0
Status: UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99134
stli at linux dot ibm.com changed:
What|Removed |Added
Resolution|--- |FIXED
Status|UNC
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99200
--- Comment #1 from JoaoBapt ---
I created a Godbolt snippet which also shows that the bug is still there in GCC
11. The entire output (but the .ii) is there on the command line:
https://godbolt.org/z/njMM3f
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99181
--- Comment #3 from Jonathan Wakely ---
We're in namespace std here so size_t doesn't need to be qualified, but
otherwise the patch is fine.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99199
Jakub Jelinek changed:
What|Removed |Added
CC||glisse at gcc dot gnu.org,
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99153
--- Comment #3 from CVS Commits ---
The master branch has been updated by Nathan Sidwell :
https://gcc.gnu.org/g:c49fcfddaa47f2828fe2af11ae857cd67f53e23f
commit r11-7322-gc49fcfddaa47f2828fe2af11ae857cd67f53e23f
Author: Nathan Sidwell
Date:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99153
Nathan Sidwell changed:
What|Removed |Added
Resolution|--- |FIXED
Status|ASSIGNED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99201
Bug ID: 99201
Summary: ICE in tsubst_copy, at cp/pt.c:16581
Product: gcc
Version: 11.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99168
--- Comment #3 from Martin Liška ---
Very interesting issue, the failure is caused by IPA ICF that merges 2
variables with different alignments. I've got a patch candidate.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99172
--- Comment #2 from gcc-user at riseup dot net ---
> Note swapping out parts of the build system isn't tested/supported.
This is both a gcc and GNU libtool bug, gcc is passing invalid flags and
libtool is silently hiding the fact. I understand t
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99190
--- Comment #3 from Martin Liška ---
Interesting, you are searching for UBSAN in libsanitizer.
Can you please share details how do you build libubsan with -fsanitize=shift?
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99193
Martin Sebor changed:
What|Removed |Added
CC||msebor at gcc dot gnu.org
Assig
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99196
Martin Sebor changed:
What|Removed |Added
CC||msebor at gcc dot gnu.org
Compon
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99201
Marek Polacek changed:
What|Removed |Added
Target Milestone|--- |8.5
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99200
Marek Polacek changed:
What|Removed |Added
Last reconfirmed||2021-02-22
See Also|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99200
Jakub Jelinek changed:
What|Removed |Added
CC||jakub at gcc dot gnu.org
--- Comment #3
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99201
Jakub Jelinek changed:
What|Removed |Added
CC||jakub at gcc dot gnu.org
--- Comment #2
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85074
--- Comment #3 from CVS Commits ---
The master branch has been updated by John David Anglin :
https://gcc.gnu.org/g:d789cf134b7e04ffd90e9512e3e591bd16dc6655
commit r11-7323-gd789cf134b7e04ffd90e9512e3e591bd16dc6655
Author: John David Anglin
Da
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99172
--- Comment #3 from Jonathan Wakely ---
(In reply to gcc-user from comment #2)
> Briefly it explained that -lvtv comes from -fvtable-verify=std in a gcc spec
> file and is propogated to Makefile.in by gcc/Makefile.def.
The -fvtable-verify=std do
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99201
--- Comment #3 from Matthias Kretz (Vir) ---
I'll try to find a better reduction.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85074
--- Comment #4 from CVS Commits ---
The releases/gcc-10 branch has been updated by John David Anglin
:
https://gcc.gnu.org/g:89b7f2b821e0a158fee586b3d655f9a7d925b9c3
commit r10-9382-g89b7f2b821e0a158fee586b3d655f9a7d925b9c3
Author: John David A
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98718
Nathan Sidwell changed:
What|Removed |Added
Ever confirmed|0 |1
Status|UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85074
John David Anglin changed:
What|Removed |Added
Resolution|--- |FIXED
Status|UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99174
--- Comment #1 from CVS Commits ---
The master branch has been updated by Nathan Sidwell :
https://gcc.gnu.org/g:afed55036b65526be006d55f003f670ebeadb223
commit r11-7324-gafed55036b65526be006d55f003f670ebeadb223
Author: Nathan Sidwell
Date:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99190
--- Comment #4 from Vittorio Zecca ---
To generate a sanitized version of libgfortran I built whole sanitized
gcc with the following command:
CFLAGS="-g -O0 -fsanitize=undefined -lubsan" LIBS="-lubsan"
CXXFLAGS=$CFLAGS ../gcc-150221/configure
--
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99174
Nathan Sidwell changed:
What|Removed |Added
Status|ASSIGNED|RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99202
Bug ID: 99202
Summary: Undefined behaviour in libquadmath file rem_pio2q.c
function __quadmath_rem_pio2q
Product: gcc
Version: 11.0
Status: UNCONFIRMED
Severity
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99203
Bug ID: 99203
Summary: Undefined behaviour in libquadmath file print_fp.c
function __quadmath_printf_fp
Product: gcc
Version: 11.0
Status: UNCONFIRMED
Severity:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99191
Dominique d'Humieres changed:
What|Removed |Added
Ever confirmed|0 |1
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99173
Jakub Jelinek changed:
What|Removed |Added
CC||jakub at gcc dot gnu.org
--- Comment #4
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99198
Martin Sebor changed:
What|Removed |Added
Known to fail||10.2.0, 11.0, 5.5.0, 6.4.0,
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99168
--- Comment #4 from zhan3299 at purdue dot edu ---
(In reply to Martin Liška from comment #3)
> Very interesting issue, the failure is caused by IPA ICF that merges 2
> variables with different alignments. I've got a patch candidate.
Hi, just cur
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96580
Dominique d'Humieres changed:
What|Removed |Added
Ever confirmed|0 |1
Status|UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99190
--- Comment #5 from Vittorio Zecca ---
Sorry I meant libubsan, but I am building the whole gcc, g++, and gfortran
sanitized version.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99172
--- Comment #4 from gcc-user at riseup dot net ---
Thanks for the clarification, regardless -lvtv is then passed to the libtool
implementation. With GNU libtool it is silently removed hiding the bug, while
slibtool actually passes it to ld which f
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99186
m.cencora at gmail dot com changed:
What|Removed |Added
CC||m.cencora at gmail dot com
-
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99168
--- Comment #5 from Martin Liška ---
(In reply to zhan3299 from comment #4)
> (In reply to Martin Liška from comment #3)
> > Very interesting issue, the failure is caused by IPA ICF that merges 2
> > variables with different alignments. I've got
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99199
--- Comment #2 from Jakub Jelinek ---
Until before pro_and_epilogue we have a bb with just code_label, note and
return reg use which has 65 predecessors.
The pro_and_epilogue pass turns that into 65 simple_return jumps.
The ret insns at the end a
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99106
Jakub Jelinek changed:
What|Removed |Added
Summary|[9/10/11 Regression] ICE in |[9/10 Regression] ICE in
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99196
David Malcolm changed:
What|Removed |Added
Last reconfirmed||2021-02-22
Status|UNCONFIRME
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99204
Bug ID: 99204
Summary: ICE in fold_read_from_constant_string, at
fold-const.c:15441
Product: gcc
Version: 11.0
Status: UNCONFIRMED
Severity: normal
Pr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99204
G. Steinmetz changed:
What|Removed |Added
Keywords||ice-on-invalid-code
--- Comment #1 from G
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99205
Bug ID: 99205
Summary: [10/11 Regression] Out of memory with undefined
character length
Product: gcc
Version: 11.0
Status: UNCONFIRMED
Severity: normal
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99185
m.cencora at gmail dot com changed:
What|Removed |Added
CC||m.cencora at gmail dot com
-
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99206
Bug ID: 99206
Summary: [11 Regression] ICE in add_init_expr_to_sym, at
fortran/decl.c:1980
Product: gcc
Version: 11.0
Status: UNCONFIRMED
Severity: normal
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99204
Dominique d'Humieres changed:
What|Removed |Added
Last reconfirmed||2021-02-22
Status|UNC
1 - 100 of 157 matches
Mail list logo