https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67906
Bug ID: 67906
Summary: Missing warning about std::move without effect
Product: gcc
Version: 5.2.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c+
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67903
--- Comment #1 from Richard Biener ---
To me it looks like the issue is that when statically linking libstdc++ into a
shared library you export the symbols of that libstdc++ copy and thus they
participate in merging. So my suggestion is that you
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67889
Richard Biener changed:
What|Removed |Added
Status|ASSIGNED|RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67891
--- Comment #3 from Richard Biener ---
Author: rguenth
Date: Fri Oct 9 08:12:18 2015
New Revision: 228635
URL: https://gcc.gnu.org/viewcvs?rev=228635&root=gcc&view=rev
Log:
2015-10-09 Richard Biener
PR tree-optimization/67891
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66306
Andreas Krebbel changed:
What|Removed |Added
Status|ASSIGNED|RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66306
Andreas Krebbel changed:
What|Removed |Added
Status|RESOLVED|CLOSED
--- Comment #4 from Andreas Kre
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=51266
Dominique d'Humieres changed:
What|Removed |Added
Status|WAITING |NEW
--- Comment #6 from Dominique
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=46783
Dominique d'Humieres changed:
What|Removed |Added
Status|WAITING |NEW
--- Comment #2 from Dominique
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67889
--- Comment #3 from Richard Biener ---
changelog got attributed to PR67891
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61615
Dominique d'Humieres changed:
What|Removed |Added
Status|WAITING |NEW
--- Comment #8 from Dominique
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=41599
Dominique d'Humieres changed:
What|Removed |Added
Status|WAITING |NEW
--- Comment #4 from Dominique
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63858
Thomas Schwinge changed:
What|Removed |Added
Keywords||openmp
Status|NEW
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67192
--- Comment #16 from Andreas Arnez ---
(In reply to Manuel López-Ibáñez from comment #15)
> (In reply to Andreas Arnez from comment #11)
> > Any news here? AFAIK the problem still exists.
>
> I still think the solution in comment #10 is the lea
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67366
--- Comment #13 from Ramana Radhakrishnan ---
Author: ramana
Date: Fri Oct 9 10:53:31 2015
New Revision: 228643
URL: https://gcc.gnu.org/viewcvs?rev=228643&root=gcc&view=rev
Log:
[Patch PR target/67366 1/2] [ARM] - Add movmisalignhi / si patter
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67192
--- Comment #17 from Manuel López-Ibáñez ---
(In reply to Andreas Arnez from comment #16)
> Well, I'm rather a GDB- than a GCC developer. My interest in this is to
> ensure that GDB doesn't become completely useless ;-)
> Also, I thought that Da
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63304
--- Comment #26 from Ramana Radhakrishnan ---
Author: ramana
Date: Fri Oct 9 10:58:06 2015
New Revision: 228644
URL: https://gcc.gnu.org/viewcvs?rev=228644&root=gcc&view=rev
Log:
[AArch64] Handle literal pools for functions > 1 MiB in size.
T
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67366
Ramana Radhakrishnan changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63304
--- Comment #27 from Ramana Radhakrishnan ---
(In reply to Ramana Radhakrishnan from comment #26)
> Author: ramana
> Date: Fri Oct 9 10:58:06 2015
> New Revision: 228644
>
> URL: https://gcc.gnu.org/viewcvs?rev=228644&root=gcc&view=rev
> Log:
>
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67192
--- Comment #18 from Richard Biener ---
The "simpler" progression seems to be to remove code like
if (CAN_HAVE_LOCATION_P (t) && code != LABEL_EXPR)
{
if (!EXPR_HAS_LOCATION (t))
SET_EXPR_LOCATION (t, input_location);
}
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67366
--- Comment #15 from Ramana Radhakrishnan ---
Author: ramana
Revision: 228644
Modified property: svn:log
Modified: svn:log at Fri Oct 9 11:08:05 2015
--
--- svn:log (or
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63304
--- Comment #28 from Ramana Radhakrishnan ---
Author: ramana
Revision: 228644
Modified property: svn:log
Modified: svn:log at Fri Oct 9 11:08:05 2015
--
--- svn:log (or
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67192
--- Comment #19 from Manuel López-Ibáñez ---
(In reply to Richard Biener from comment #18)
> The "simpler" progression seems to be to remove code like
>
> if (CAN_HAVE_LOCATION_P (t) && code != LABEL_EXPR)
> {
> if (!EXPR_HAS_LOCATIO
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67876
Markus Trippelsdorf changed:
What|Removed |Added
Status|UNCONFIRMED |NEW
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67903
--- Comment #2 from Jonathan Wakely ---
(In reply to Yucheng Low from comment #0)
> This would not be a problem if not for the fact that:
> - the global locale is initialized with an inplace new:
> locale_init.cc:378
> _M_fac
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67900
--- Comment #3 from Dominique d'Humieres ---
The code compiles without error with the patch in comment 2 without regression.
I have reread the comments in pr48858 and pr55465 and did not convinced myself
that the code is invalid.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67903
--- Comment #3 from Jonathan Wakely ---
(If this is something that should be fixed in the library at all),
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67894
Dominique d'Humieres changed:
What|Removed |Added
Status|UNCONFIRMED |WAITING
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67817
Dominique d'Humieres changed:
What|Removed |Added
Status|UNCONFIRMED |NEW
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67828
--- Comment #7 from Alexandre Oliva ---
Author: aoliva
Date: Fri Oct 9 12:18:24 2015
New Revision: 228650
URL: https://gcc.gnu.org/viewcvs?rev=228650&root=gcc&view=rev
Log:
[PR67828] don't unswitch on default defs of non-parms
for gcc/ChangeL
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67766
--- Comment #6 from Alexandre Oliva ---
Author: aoliva
Date: Fri Oct 9 12:18:40 2015
New Revision: 228651
URL: https://gcc.gnu.org/viewcvs?rev=228651&root=gcc&view=rev
Log:
[PR67766] reorder handling of parallels, concats and promoted values in
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67891
--- Comment #4 from Alexandre Oliva ---
Author: aoliva
Date: Fri Oct 9 12:18:58 2015
New Revision: 228652
URL: https://gcc.gnu.org/viewcvs?rev=228652&root=gcc&view=rev
Log:
[PR67891] don't test is_gimple_reg after parm expansion
for gcc/Chang
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67828
Alexandre Oliva changed:
What|Removed |Added
Status|ASSIGNED|RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67766
Alexandre Oliva changed:
What|Removed |Added
Status|ASSIGNED|RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64164
Bug 64164 depends on bug 67766, which changed state.
Bug 67766 Summary: [6 Regression]: Bootstrap failure on alpha-linux-gnu: ICE in
simplify_subreg, at simplify-rtx.c
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67766
What|Remove
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67891
Alexandre Oliva changed:
What|Removed |Added
Status|ASSIGNED|RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64164
Bug 64164 depends on bug 67891, which changed state.
Bug 67891 Summary: [6 Regression] FAIL: gcc.dg/pr43300.c (internal compiler
error) on alpha-linux-gnu
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67891
What|Removed
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67894
--- Comment #2 from John Donners ---
Hello Dominique,
thank you for your reaction. Yes, I should have added the output and my
expectation. I expected to see the following:
Actual argument, allocatable, lbound= 3 10
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67894
Dominique d'Humieres changed:
What|Removed |Added
Status|WAITING |NEW
--- Comment #3 from Dominique
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67894
--- Comment #4 from John Donners ---
I think that you meant an assumed-shape array with
real,dimension(:,:,:) :: a
The assumed-shape array is described in section 5.5.8.3 of the draft standard
and it explicitly says that the lower bound is 1,
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67894
--- Comment #5 from Dominique d'Humieres ---
> I think that you meant an assumed-shape array with ...
Indeed! Thanks for the pointer.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67894
--- Comment #6 from John Donners ---
I did have a look at the gcc code to see if I could change this, but I don't
know where to start. I did see the tests for the assumed rank bounds and I
could help to change those.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67894
Dominique d'Humieres changed:
What|Removed |Added
CC||mikael at gcc dot gnu.org
--- Com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67907
Bug ID: 67907
Summary: regression: internal compiler error: Segmentation
fault
Product: gcc
Version: 4.9.2
Status: UNCONFIRMED
Severity: normal
Priori
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53867
Dominique d'Humieres changed:
What|Removed |Added
Status|UNCONFIRMED |WAITING
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56149
Dominique d'Humieres changed:
What|Removed |Added
Status|UNCONFIRMED |WAITING
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67806
Dominique d'Humieres changed:
What|Removed |Added
Status|UNCONFIRMED |NEW
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67779
Dominique d'Humieres changed:
What|Removed |Added
Status|UNCONFIRMED |WAITING
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67843
--- Comment #8 from Christophe Lyon ---
I've tested the patch you attached.
It needs a slight modification because it does not apply to current trunk:
_GLIBCXX_READ_MEM_BARRIER;
_GLIBCXX_WRITE_MEM_BARRIER;
have be
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67779
--- Comment #3 from Arjen Markus ---
Let me clarify:
the STRING "String = 10" should come after the STRING "String = 1 ". It is not
a matter of the numbers inside. If you compare these strings with LLT(), you
will see this.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67908
Bug ID: 67908
Summary: gcc segfaults with -fstack-check (internal compiler
error) / armv7 host and target
Product: gcc
Version: 5.2.0
Status: UNCONFIRMED
Severi
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67760
Dominique d'Humieres changed:
What|Removed |Added
Status|UNCONFIRMED |NEW
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54753
Dominique d'Humieres changed:
What|Removed |Added
Status|UNCONFIRMED |NEW
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67861
--- Comment #6 from Nathan Sidwell ---
Author: nathan
Date: Fri Oct 9 14:13:39 2015
New Revision: 228657
URL: https://gcc.gnu.org/viewcvs?rev=228657&root=gcc&view=rev
Log:
* config/nvptx/nvptx.c (nvptx_init_axis_predicate): Fix output
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64392
Sebastian Pop changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66117
Sebastian Pop changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64394
Sebastian Pop changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59586
Sebastian Pop changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59859
Bug 59859 depends on bug 59586, which changed state.
Bug 59586 Summary: [4.9 Regression] [graphite] Segmentation fault with -Ofast
-floop-parallelize-all -ftree-parallelize-loops
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59586
What
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67760
--- Comment #2 from Dr. Thomas Orgis ---
Am Fri, 09 Oct 2015 13:59:08 +
schrieb "dominiq at lps dot ens.fr" :
> After including a line
>
> module fancymod
Yeah, sorry about that, but it is kindof obvious that this line is
missing from the
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59121
Sebastian Pop changed:
What|Removed |Added
CC||spop at gcc dot gnu.org
--- Comment #25
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59121
Sebastian Pop changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59859
Bug 59859 depends on bug 59121, which changed state.
Bug 59121 Summary: [4.9/5/6 Regression] endless loop with -O2
-floop-parallelize-all
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59121
What|Removed |Added
-
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57732
Bug 57732 depends on bug 59121, which changed state.
Bug 59121 Summary: [4.9/5/6 Regression] endless loop with -O2
-floop-parallelize-all
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59121
What|Removed |Added
-
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67518
Dominique d'Humieres changed:
What|Removed |Added
Status|UNCONFIRMED |WAITING
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64116
Sebastian Pop changed:
What|Removed |Added
Status|WAITING |RESOLVED
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64976
Sebastian Pop changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57168
Sebastian Pop changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57167
Sebastian Pop changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58202
Sebastian Pop changed:
What|Removed |Added
Status|WAITING |RESOLVED
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67518
--- Comment #2 from Joost VandeVondele
---
yes, on current trunk this doesn't fail anymore, not sure if it has gone latent
or was fixed with some of the recent activity.
Unfortunately, I seemingly still have a wrong code case, which I have not
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=48241
Sebastian Pop changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=51132
Sebastian Pop changed:
What|Removed |Added
CC||ro at gcc dot gnu.org
--- Comment #6 fro
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66518
Thomas Schwinge changed:
What|Removed |Added
Status|UNCONFIRMED |ASSIGNED
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65437
Thomas Schwinge changed:
What|Removed |Added
Status|UNCONFIRMED |ASSIGNED
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66860
Sebastian Pop changed:
What|Removed |Added
Status|NEW |RESOLVED
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67895
--- Comment #1 from afomin at gcc dot gnu.org ---
Author: afomin
Date: Fri Oct 9 15:57:06 2015
New Revision: 228660
URL: https://gcc.gnu.org/viewcvs?rev=228660&root=gcc&view=rev
Log:
AVX512: Fix embedded rounding/SAE specifier position.
gcc/
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66070
Sebastian Pop changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67779
--- Comment #4 from Dominique d'Humieres ---
I have instrumented the test and found that 'String = 10 ', which at
the first position, is compared only once at the first call to quick sort, but
not for the other invocations of array(1:j).
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67895
Alexander Fomin changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47598
Sebastian Pop changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61225
--- Comment #24 from Dominique d'Humieres ---
> So deferring to 6.0 then.
Any progress?
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62113
Sebastian Pop changed:
What|Removed |Added
Status|NEW |RESOLVED
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67909
Bug ID: 67909
Summary: [6 Regression] 416.gamess in SPEC CPU 2006 is
miscompiled
Product: gcc
Version: 5.3.0
Status: UNCONFIRMED
Severity: normal
Prio
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66926
Sebastian Pop changed:
What|Removed |Added
Status|NEW |RESOLVED
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59859
Bug 59859 depends on bug 67518, which changed state.
Bug 67518 Summary: [6 Regression][graphite] ISL: position out of bounds
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67518
What|Removed |Added
---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67518
Sebastian Pop changed:
What|Removed |Added
Status|WAITING |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=50210
Sebastian Pop changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59859
Bug 59859 depends on bug 50210, which changed state.
Bug 50210 Summary: [4.9/5/6 Regression] ICE: in create_linear_expr_from_tree,
at graphite-sese-to-poly.c:1137 with fgraphite-identity -ffast-math
-fno-tree-scev-cprop -fstrict-overflow
https:/
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67910
Bug ID: 67910
Summary: Two autos in a single function confuses the type
system
Product: gcc
Version: 5.2.0
Status: UNCONFIRMED
Severity: major
Priorit
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67910
--- Comment #1 from Guille ---
Ignore "__attribute__((unused))", it was added by mistake.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67911
Bug ID: 67911
Summary: new expression fails to align overaligned types
Product: gcc
Version: 6.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67910
--- Comment #2 from Guille ---
struct A {};
struct B {};
static auto f(auto b) -> A { return A(); } // error: could not convert 'A()'
from 'A' to 'B'
int main()
{
A a = f(B()); // error: conversion from 'B' to non-scalar type 'A'
requeste
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67910
--- Comment #3 from Guille ---
gcc 5.2.0: -Wall -Wextra -std=c++1y
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67903
--- Comment #4 from Yucheng Low ---
I have tried version scripts and it ought to work but I couldn't quite figure
out what symbols to hide.
In any case, the proposed modification does fix a questionable bit of code in
locale.cc (i.e. the resize
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67911
--- Comment #1 from Marc Glisse ---
(I thought we already had a PR or 2 about this)
The future is likely to be based on
http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/p0035r0.html
but sadly this is moving forward quite slowly.
Users can
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67910
Marc Glisse changed:
What|Removed |Added
Severity|major |normal
--- Comment #4 from Marc Glisse --
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67912
Rainer Orth changed:
What|Removed |Added
Target Milestone|--- |6.0
-solaris2.10/include -isystem
/vol/gcc/i386-pc-solaris2.10/sys-include-c -g -O2 -m64 -fpic -W -Wall
-gnatpg -nostdinc -m64 s-regpat.adb -o s-regpat.o
+===GNAT BUG DETECTED==+
| 6.0.0 20151009 (experimental) [trunk revision 228636] (i386-pc
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67757
Dominique d'Humieres changed:
What|Removed |Added
Status|UNCONFIRMED |NEW
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67894
--- Comment #8 from Mikael Morin ---
(In reply to Dominique d'Humieres from comment #7)
> AFAICT the (l\u)bound have been set by r190098. Mikael CCed.
I think that revision just made scalarization work.
For the calls with the dim= argument, I do
1 - 100 of 121 matches
Mail list logo