summaryrefslogtreecommitdiff
path: root/libavcodec/arm/aac.h
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2011-05-27 21:59:46 +0100
committerMans Rullgard <mans@mansr.com>2011-05-28 15:00:17 +0100
commit5726ec171bf7cb833f8445d9a294f23fc047a549 (patch)
treeacf32c906947551969ec5a71e984d6553c1a9a70 /libavcodec/arm/aac.h
parenta84f82560e3fa6aa41de64b0a5b75d1d607599aa (diff)
ARM: add "cc" clobbers to inline asm where needed
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/arm/aac.h')
-rw-r--r--libavcodec/arm/aac.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/arm/aac.h b/libavcodec/arm/aac.h
index e907c9ea25..8355e9c193 100644
--- a/libavcodec/arm/aac.h
+++ b/libavcodec/arm/aac.h
@@ -128,7 +128,7 @@ static inline float *VMUL4S(float *dst, const float *v, unsigned idx,
: "=&r"(v0), "=&r"(v1), "=&r"(v2), "=&r"(v3), "+r"(dst),
"+r"(sign), "=r"(nz)
: "r"(v), "r"(idx), "r"(scale)
- : "d0", "d1", "d2", "d3", "d4", "d5");
+ : "cc", "d0", "d1", "d2", "d3", "d4", "d5");
return dst;
}