summaryrefslogtreecommitdiff
path: root/libavcodec/sh4
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2009-01-09 03:05:11 +0000
committerMåns Rullgård <mans@mansr.com>2009-01-09 03:05:11 +0000
commit6dde9f8c2085c6eca253ca27190d4ae7e248bfc2 (patch)
tree1de7ebfb1179175a9a7f30d036101df0cdcb156b /libavcodec/sh4
parente49906c3210514edb6220c37a51551d3c1485120 (diff)
downloadffmpeg-6dde9f8c2085c6eca253ca27190d4ae7e248bfc2.tar.gz
SH4: fix typo in asm constraint
Originally committed as revision 16503 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/sh4')
-rw-r--r--libavcodec/sh4/sh4.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/sh4/sh4.h b/libavcodec/sh4/sh4.h
index 5678c920a4..5d46540cb6 100644
--- a/libavcodec/sh4/sh4.h
+++ b/libavcodec/sh4/sh4.h
@@ -34,7 +34,7 @@
do { \
__asm__ volatile ("or %1, %0 \n\t" \
"lds %0, fpscr \n\t" \
- : "=&r"(fpscr) : "r"(1<<19)); \
+ : "+r"(fpscr) : "r"(1<<19)); \
} while (0)
#else
# define fp_single_enter(fpscr) ((void)fpscr)