[Bug c++/70584] constexpr variables cannot be used as intrinsic arguments where an immediate is expected

2016-07-18 Thread jason at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70584 Jason Merrill changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Bug c++/70584] constexpr variables cannot be used as intrinsic arguments where an immediate is expected

2016-05-31 Thread jason at gcc dot gnu.org
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=gcc=rev Log: PR c++/70584 - error with parenthesized builtin arg *

[Bug c++/70584] constexpr variables cannot be used as intrinsic arguments where an immediate is expected

2016-05-24 Thread jason at gcc dot gnu.org
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=gcc=rev Log: PR c++/70584 - don't force indirection to an rvalue *

[Bug c++/70584] constexpr variables cannot be used as intrinsic arguments where an immediate is expected

2016-05-23 Thread jason at gcc dot gnu.org
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=gcc=rev Log: PR c++/70584 - error with parenthesized builtin arg *

[Bug c++/70584] constexpr variables cannot be used as intrinsic arguments where an immediate is expected

2016-04-09 Thread daniel.gutson at tallertechnologies dot com
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

[Bug c++/70584] constexpr variables cannot be used as intrinsic arguments where an immediate is expected

2016-04-09 Thread daniel.gutson at tallertechnologies dot com
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).

[Bug c++/70584] constexpr variables cannot be used as intrinsic arguments where an immediate is expected

2016-04-08 Thread msebor at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70584 Martin Sebor changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug c++/70584] constexpr variables cannot be used as intrinsic arguments where an immediate is expected

2016-04-07 Thread andres.tiraboschi at tallertechnologies dot com
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.

[Bug c++/70584] constexpr variables cannot be used as intrinsic arguments where an immediate is expected

2016-04-07 Thread daniel.gutson at tallertechnologies dot com
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); }