Commit 0ef72720 authored by KO Myung-Hun's avatar KO Myung-Hun
Browse files

Use dq instead of ddq with NASM

Change-Id: Iffb7cd44b449dc10fa5c24405be909d051b7abb5
Showing with 6 additions and 0 deletions
...@@ -271,7 +271,13 @@ sym(vp8_variance_and_sad_16x16_sse2): ...@@ -271,7 +271,13 @@ sym(vp8_variance_and_sad_16x16_sse2):
SECTION_RODATA SECTION_RODATA
align 16 align 16
t128: t128:
%ifndef __NASM_VER__
ddq 128 ddq 128
%elif CONFIG_BIG_ENDIAN
dq 0, 128
%else
dq 128, 0
%endif
align 16 align 16
tMFQE: ; 1 << MFQE_PRECISION tMFQE: ; 1 << MFQE_PRECISION
times 8 dw 0x10 times 8 dw 0x10
......
Supports Markdown
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