diff options
author | Mans Rullgard <mans@mansr.com> | 2012-08-06 00:09:48 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-08-07 15:20:56 +0100 |
commit | a3df4781f40869cd7766f46221412039cf54c1b7 (patch) | |
tree | 59cddf33dc73be1370aa59ca545ac35e47d2cb23 /libavcodec/x86/fft_mmx.asm | |
parent | 36ef5369ee9b336febc2c270f8718cec4476cb85 (diff) | |
download | ffmpeg-a3df4781f40869cd7766f46221412039cf54c1b7.tar.gz |
x86: add colons after labels
nasm prints a warning if the colon is missing.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/x86/fft_mmx.asm')
-rw-r--r-- | libavcodec/x86/fft_mmx.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/fft_mmx.asm b/libavcodec/x86/fft_mmx.asm index 6082d9ee36..60d6669238 100644 --- a/libavcodec/x86/fft_mmx.asm +++ b/libavcodec/x86/fft_mmx.asm @@ -607,7 +607,7 @@ cglobal fft_calc, 2,5,8 add rcx, 3 shl r2, cl sub r4, r2 -.loop +.loop: %if mmsize == 8 PSWAPD m0, [r4 + r2 + 4] mova [r4 + r2 + 4], m0 |