diff options
author | Måns Rullgård <mans@mansr.com> | 2009-01-09 03:05:11 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-01-09 03:05:11 +0000 |
commit | 6dde9f8c2085c6eca253ca27190d4ae7e248bfc2 (patch) | |
tree | 1de7ebfb1179175a9a7f30d036101df0cdcb156b | |
parent | e49906c3210514edb6220c37a51551d3c1485120 (diff) | |
download | ffmpeg-streaming-6dde9f8c2085c6eca253ca27190d4ae7e248bfc2.zip ffmpeg-streaming-6dde9f8c2085c6eca253ca27190d4ae7e248bfc2.tar.gz |
SH4: fix typo in asm constraint
Originally committed as revision 16503 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/sh4/sh4.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/sh4/sh4.h b/libavcodec/sh4/sh4.h index 5678c92..5d46540 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) |