--- trunk/src/lib/common/eigen2x2.c 2011/11/16 02:19:51 1640 +++ trunk/src/lib/common/eigen2x2.c 2012/07/27 23:51:22 1985 @@ -38,17 +38,6 @@ #define SUB(v,i) (((Diderot_union2_t)(v)).r[i]) -// OpenCL 1.0 does not specify the C representation of the host types -// for OpenCL vector types (e.g., cl_float4), so we have to handle this -// mechanism with a macro. -#if defined(CL_HOST_VECTORS_ARE_STRUCTS) -# define VSUB(v,i) (v).s[i] -#elif defined(CL_HOST_VECTORS_ARE_ARRAYS) -# define VSUB(v,i) (v)[i] -#else -# error unable to access elements of host vectors -#endif - /* ** Eigensolver for symmetric 2x2 matrix: **