https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70584
Jason Merrill changed:
What|Removed |Added
Status|NEW |RESOLVED
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70584
--- Comment #8 from Jason Merrill ---
Author: jason
Date: Tue May 31 21:36:22 2016
New Revision: 236951
URL: https://gcc.gnu.org/viewcvs?rev=236951&root=gcc&view=rev
Log:
PR c++/70584 - error with parenthesized builtin arg
* cp-
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70584
--- Comment #7 from Jason Merrill ---
Author: jason
Date: Tue May 24 21:06:53 2016
New Revision: 236670
URL: https://gcc.gnu.org/viewcvs?rev=236670&root=gcc&view=rev
Log:
PR c++/70584 - don't force indirection to an rvalue
* cp-
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70584
--- Comment #6 from Jason Merrill ---
Author: jason
Date: Mon May 23 21:21:24 2016
New Revision: 236616
URL: https://gcc.gnu.org/viewcvs?rev=236616&root=gcc&view=rev
Log:
PR c++/70584 - error with parenthesized builtin arg
* cp-
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70584
--- Comment #5 from Daniel Gutson
---
(In reply to Daniel Gutson from comment #4)
> Thanks Martin.
>
> Andres is finishing 70210 soon next week, and he can address this after
s/70210/70201/
> solving it. Feel free to assign this issue to
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70584
--- Comment #4 from Daniel Gutson
---
Thanks Martin.
Andres is finishing 70210 soon next week, and he can address this after solving
it. Feel free to assign this issue to him
(andres.tirabos...@tallertechnologies.com).
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70584
Martin Sebor changed:
What|Removed |Added
Status|UNCONFIRMED |NEW
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70584
--- Comment #2 from Andrés Agustín Tiraboschi ---
#include
int main()
{
__m128i r;
constexpr auto index = 1;
enum {index2 = index};
r = _mm_aeskeygenassist_si128(r, index2);
}
This works also.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70584
--- Comment #1 from Daniel Gutson
---
Additional data: an enumerator works:
int main()
{
__m128i r;
//constexpr auto index = 1;
enum { index = 1 };
r = _mm_aeskeygenassist_si128(r, index);
}