YouCompleteMe/cpp/llvm/tools/clang/test/SemaOpenCL/init.cl
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

16 lines
391 B
Common Lisp

// RUN: %clang_cc1 %s -verify -pedantic -fsyntax-only
typedef float float8 __attribute((ext_vector_type(8)));
typedef float float32_t;
typedef __attribute__(( __vector_size__(16) )) float32_t __neon_float32x4_t;
typedef struct __simd128_float32_t {
__neon_float32x4_t val;
} float32x4_t;
float8 foo(float8 x) {
float32x4_t lo;
float32x4_t hi;
return (float8) (lo.val, hi.val);
}