From 6be7944ee2ec2f045e6eb9a93237e992c8b20ac4 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Thu, 17 Mar 2016 10:16:13 +0100 Subject: x86: Add missing colons after assembly labels This fixes many warnings of the sort warning: label alone on a line without a colon might be in error --- libavutil/x86/imgutils.asm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavutil') diff --git a/libavutil/x86/imgutils.asm b/libavutil/x86/imgutils.asm index 9c1e940822..be7a47f6d0 100644 --- a/libavutil/x86/imgutils.asm +++ b/libavutil/x86/imgutils.asm @@ -28,10 +28,10 @@ cglobal image_copy_plane_uc_from, 6, 7, 4, dst, dst_linesize, src, src_linesize, add srcq, bwq neg bwq -.row_start +.row_start: mov rowposq, bwq -.loop +.loop: movntdqa m0, [srcq + rowposq + 0 * mmsize] movntdqa m1, [srcq + rowposq + 1 * mmsize] movntdqa m2, [srcq + rowposq + 2 * mmsize] -- cgit v1.2.3