This revision was automatically updated to reflect the committed changes.
Closed by commit rL310160: [OpenCL] Remove extra select functions from
opencl-c.h (authored by yaxunl).
Changed prior to commit:
https://reviews.llvm.org/D36259?vs=109486&id=109845#toc
Repository:
rL LLVM
https://revi
yaxunl added a comment.
In https://reviews.llvm.org/D36259#830122, @bader wrote:
> Out of curiosity: how did you detect this?
> Can we use the same approach for writing tests?
Some user code generated call to a select function which we do not have in
library, then Brian found that there are e
bader accepted this revision.
bader added a comment.
This revision is now accepted and ready to land.
Out of curiosity: how did you detect this?
Can we use the same approach for writing tests?
https://reviews.llvm.org/D36259
___
cfe-commits mailing
yaxunl created this revision.
OpenCL spec v2.0 s6.13.6:
gentype select (gentype a,
gentype b,
igentype c)
gentype select (gentype a,
gentype b,
ugentype c)
igentype and ugentype must have the same number
of elements and bits as gentype.
https://reviews.llvm.org/D36259
Files:
lib/Headers/op