Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Unified Diff: source/row_gcc.cc

Issue 1460723003: syntax fix for gcc movzwl (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv@master
Patch Set: bump version to r1542 Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « include/libyuv/version.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: source/row_gcc.cc
diff --git a/source/row_gcc.cc b/source/row_gcc.cc
index 732d83b84d5ae2309e300f3652bd0cf399746c26..63577da10d891e5fd832e0ffce5f355724a0b5c6 100644
--- a/source/row_gcc.cc
+++ b/source/row_gcc.cc
@@ -1526,9 +1526,9 @@ void RGBAToUVRow_SSSE3(const uint8* src_rgba0, int src_stride_rgba,
// __asm pinsrw xmm0, [esi], 0 /* U */
// __asm pinsrw xmm1, [esi + edi], 0 /* V */
#define READYUV411_EBX \
- "movzw " MEMACCESS([u_buf]) ",%%ebx \n" \
+ "movzwl " MEMACCESS([u_buf]) ",%%ebx \n" \
"movd %%ebx,%%xmm0 \n" \
- MEMOPREG(movzw,0x00,[u_buf],[v_buf],1,ebx) " \n" \
+ MEMOPREG(movzwl,0x00,[u_buf],[v_buf],1,ebx) " \n" \
"movd %%ebx,%%xmm1 \n" \
"lea " MEMLEA(0x2, [u_buf]) ",%[u_buf] \n" \
"punpcklbw %%xmm1,%%xmm0 \n" \
« no previous file with comments | « include/libyuv/version.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698