diff mbox series

[FFmpeg-devel,11/14,inline,assembly] add memory to mpegaudiodsp

Message ID 20200422174918.7290-11-frederic.recoules@univ-grenoble-alpes.fr
State New
Headers show
Series [FFmpeg-devel,1/5,inline,assembly] prepares for contiguous assembly statements merging | expand

Checks

Context Check Description
andriy/default pending
andriy/make success Make finished
andriy/make_fate success Make fate finished

Commit Message

FRÉDÉRIC RECOULES April 26, 2020, 7:44 p.m. UTC
From: Frédéric Recoules <frederic.recoules@orange.fr>

---
 libavcodec/x86/mpegaudiodsp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/libavcodec/x86/mpegaudiodsp.c b/libavcodec/x86/mpegaudiodsp.c
index 10b9e814d5..83457dfbb3 100644
--- a/libavcodec/x86/mpegaudiodsp.c
+++ b/libavcodec/x86/mpegaudiodsp.c
@@ -103,7 +103,7 @@  static void apply_window(const float *buf, const float *win1,
             "jl              1b                   \n\t"
             :"+&r"(count)
             :"r"(win1a), "r"(win2a), "r"(bufa), "r"(sum1a), "r"(sum2a)
-	     XMM_CLOBBERS_ONLY("xmm0", "xmm1", "xmm2", "xmm4")
+	    :"memory" XMM_CLOBBERS(, "xmm0", "xmm1", "xmm2", "xmm4")
             );
 
 #undef MULT