Commit c5747e65 authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen

yadif: Remove duplicated const

parent 99128661
...@@ -34,8 +34,8 @@ ...@@ -34,8 +34,8 @@
typedef intptr_t x86_reg; typedef intptr_t x86_reg;
typedef struct { uint64_t a, b; } xmm_reg; typedef struct { uint64_t a, b; } xmm_reg;
DECLARE_ASM_CONST(16, const xmm_reg, pb_1) = {0x0101010101010101ULL, 0x0101010101010101ULL}; DECLARE_ASM_CONST(16, xmm_reg, pb_1) = {0x0101010101010101ULL, 0x0101010101010101ULL};
DECLARE_ASM_CONST(16, const xmm_reg, pw_1) = {0x0001000100010001ULL, 0x0001000100010001ULL}; DECLARE_ASM_CONST(16, xmm_reg, pw_1) = {0x0001000100010001ULL, 0x0001000100010001ULL};
#ifdef CAN_COMPILE_SSSE3 #ifdef CAN_COMPILE_SSSE3
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment