]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Sema/builtins.cl
Vendor import of clang 3.9.0 release r280324:
[FreeBSD/FreeBSD.git] / test / Sema / builtins.cl
1 // RUN: %clang_cc1 %s -fsyntax-only -verify -pedantic
2 // expected-no-diagnostics
3
4 kernel void test(global float *out, global float *in, global int* in2) {
5   out[0] = __builtin_nanf("");
6   __builtin_memcpy(out, in, 32);
7   out[0] = __builtin_frexpf(in[0], in2);
8 }