Use %% for inline assembly rather than % so this compiles with clang.

Same as https://github.com/opencv/opencv/pull/8525/commits/9210cefb36868e201f7e0c8b84e4ee4f91b5432b but for this file too.
This commit is contained in:
nnorwitz
2017-04-06 12:54:56 -07:00
committed by GitHub
parent 9210cefb36
commit 24e8cd1a78
@@ -64,7 +64,7 @@ namespace cv { namespace cuda { namespace device
static __device__ __forceinline__ unsigned int laneId()
{
unsigned int ret;
asm("mov.u32 %0, %laneid;" : "=r"(ret) );
asm("mov.u32 %0, %%laneid;" : "=r"(ret) );
return ret;
}