From: Peter Collingbourne Date: Tue, 29 May 2012 00:42:21 +0000 (+0000) Subject: Fix typo in double precision case. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8b3721b01d0a8f364309a5c2af411434dae6c484;p=platform%2Fupstream%2Fllvm.git Fix typo in double precision case. llvm-svn: 157597 --- diff --git a/libclc/generic/include/clc/convert.h b/libclc/generic/include/clc/convert.h index 0d45891..a7ae94a 100644 --- a/libclc/generic/include/clc/convert.h +++ b/libclc/generic/include/clc/convert.h @@ -52,7 +52,7 @@ _CLC_CONVERT_DECL(float, float, _sat) #ifdef cl_khr_fp64 #define _CLC_VECTOR_CONVERT_FROM(FROM_TYPE, SUFFIX) \ _CLC_VECTOR_CONVERT_FROM1(FROM_TYPE, SUFFIX) \ - _CLC_VECTOR_CONVERT(FROM_TYPE, double, SUFFIX) + _CLC_VECTOR_CONVERT_DECL(FROM_TYPE, double, SUFFIX) #else #define _CLC_VECTOR_CONVERT_FROM(FROM_TYPE, SUFFIX) \ _CLC_VECTOR_CONVERT_FROM1(FROM_TYPE, SUFFIX)