diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-03-17 10:16:13 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-10-17 16:31:26 +0200 |
commit | 6be7944ee2ec2f045e6eb9a93237e992c8b20ac4 (patch) | |
tree | 5b5078d803bbe116620a2c0ce77acb437fa5c110 /libavutil/x86 | |
parent | 2816f8a8bb33bd67fec5e94f5d357918caf4e055 (diff) | |
download | ffmpeg-6be7944ee2ec2f045e6eb9a93237e992c8b20ac4.tar.gz |
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
Diffstat (limited to 'libavutil/x86')
-rw-r--r-- | libavutil/x86/imgutils.asm | 4 |
1 files changed, 2 insertions, 2 deletions
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] |