From 6dde9f8c2085c6eca253ca27190d4ae7e248bfc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Fri, 9 Jan 2009 03:05:11 +0000 Subject: [PATCH] SH4: fix typo in asm constraint Originally committed as revision 16503 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/sh4/sh4.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)