[Bug other/78366] target_clones does not generate resovler function

2017-09-14 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78366 Martin Liška changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug other/78366] target_clones does not generate resovler function

2017-07-03 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78366 Martin Liška changed: What|Removed |Added Status|NEW |ASSIGNED Known to work|

[Bug other/78366] target_clones does not generate resovler function

2017-06-20 Thread tkoenig at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78366 Thomas Koenig changed: What|Removed |Added Status|ASSIGNED|NEW Assignee|tkoenig at gcc do

[Bug other/78366] target_clones does not generate resovler function

2017-06-20 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78366 --- Comment #4 from Martin Liška --- (In reply to Thomas Koenig from comment #3) > OK, so this is more of a documentation issue. > > Also not mentioned in the docs is that "default" has to be among > the architectures in target_clone. > > It is

[Bug other/78366] target_clones does not generate resovler function

2016-11-16 Thread tkoenig at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78366 Thomas Koenig changed: What|Removed |Added Status|UNCONFIRMED |ASSIGNED Last reconfirmed|

[Bug other/78366] target_clones does not generate resovler function

2016-11-16 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78366 --- Comment #2 from Richard Biener --- Note it is created in the caller context, thus double foo(double *, double *, int) __attribute__((target_clones("avx,default"))); double x; int main() { double a,b; x = foo (&a, &b, 1); } creates it i

[Bug other/78366] target_clones does not generate resovler function

2016-11-16 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78366 --- Comment #1 from Richard Biener --- The resolver is only created when there is a call to the function.