[x265] [PATCH] asm: Correct number of xmm registers for weight_sp routine

nabajit at multicorewareinc.com nabajit at multicorewareinc.com
Tue Nov 26 13:08:26 CET 2013


# HG changeset patch
# User Nabajit Deka
# Date 1385467682 -19800
#      Tue Nov 26 17:38:02 2013 +0530
# Node ID 40d314225757b9a6009c98f456bd64d15c169b8c
# Parent  491fd3ee6fd11a52f50ba22b39b9e9596b8e7238
asm: Correct number of xmm registers for weight_sp routine.

diff -r 491fd3ee6fd1 -r 40d314225757 source/common/x86/pixel-util.asm
--- a/source/common/x86/pixel-util.asm	Mon Nov 25 14:00:56 2013 -0600
+++ b/source/common/x86/pixel-util.asm	Tue Nov 26 17:38:02 2013 +0530
@@ -803,11 +803,11 @@
 ;-------------------------------------------------------------------------------------------------------------------------------------------------
 INIT_XMM sse4
 %if ARCH_X86_64
-cglobal weight_sp, 6, 7+2, 6
+cglobal weight_sp, 6, 7+2, 7
     %define tmp_r0      r7
     %define tmp_r1      r8
 %else ; ARCH_X86_64 = 0
-cglobal weight_sp, 6, 7, 6, 0-(2*4)
+cglobal weight_sp, 6, 7, 7, 0-(2*4)
     %define tmp_r0      [(rsp + 0 * 4)]
     %define tmp_r1      [(rsp + 1 * 4)]
 %endif ; ARCH_X86_64


More information about the x265-devel mailing list