ref: b9ed185659435483205bdf70943f96d132840c84
parent: 6b9a7b3333352a6f0e8f1b2d8b690b33e18a9a08
author: Martin Storsjo <martin@martin.st>
date: Wed May 15 11:04:11 EDT 2013
arm: Explicitly write both target registers for ldrd The microsoft assembler can't handle the second register being implicit. Change-Id: Ia831953a78a25fd6b2082474f05fdb78d96cdf78
--- a/vp8/common/arm/armv6/filter_v6.asm
+++ b/vp8/common/arm/armv6/filter_v6.asm
@@ -394,7 +394,7 @@
mov r4, #0x40 ; rounding factor (for smlad{x})
|height_loop_2nd_4|
- ldrd r8, [r0, #-4] ; load the data
+ ldrd r8, r9, [r0, #-4] ; load the data
orr r7, r7, r3, lsr #1 ; loop counter
|width_loop_2nd_4|
--
⑨