Commit 7c155454 authored by mru's avatar mru

missed a redundant load


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@7801 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d779400b
...@@ -94,11 +94,11 @@ w57: .long W57 ...@@ -94,11 +94,11 @@ w57: .long W57
shift = left-shift amount shift = left-shift amount
a3 = row[2,0] a3 = row[2,0]
a4 = row[3,1] a4 = row[3,1]
ip = w42
Output in registers v1--v8 Output in registers v1--v8
*/ */
.macro idct_row4 shift .macro idct_row4 shift
ldr ip, [pc, #(w42-.-8)] /* ip = W4 | (W2 << 16) */
ldr lr, [pc, #(w46-.-8)] /* lr = W4 | (W6 << 16) */ ldr lr, [pc, #(w46-.-8)] /* lr = W4 | (W6 << 16) */
ldr v7, [pc, #(w57-.-8)] /* v7 = W5 | (W7 << 16) */ ldr v7, [pc, #(w57-.-8)] /* v7 = W5 | (W7 << 16) */
mov a2, #(1<<(\shift-1)) mov a2, #(1<<(\shift-1))
......
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