From a71fdceae243f2a6908253dcd29bbcab6559c625 Mon Sep 17 00:00:00 2001 From: Liang Qi Date: Thu, 9 Nov 2017 11:27:44 +0100 Subject: [PATCH] Add a missing semicolon in painting/qdrawhelper_neon.cpp This amends f8807b82207d7f4f41536f777473c8870673c186. Q_PROCESSOR_ARM_64 was only tested in qt5 integration. Task-number: QTBUG-64393 Change-Id: I4471c2db3dc07e47e1825c2539c32c4d2a073396 Reviewed-by: Allan Sandfeld Jensen --- src/gui/painting/qdrawhelper_neon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/painting/qdrawhelper_neon.cpp b/src/gui/painting/qdrawhelper_neon.cpp index 0ec8ced2de..e126f4b670 100644 --- a/src/gui/painting/qdrawhelper_neon.cpp +++ b/src/gui/painting/qdrawhelper_neon.cpp @@ -1130,7 +1130,7 @@ static inline void convertARGBToARGB32PM_neon(uint *buffer, const uint *src, int } else { if (RGBA) { #if defined(Q_PROCESSOR_ARM_64) - srcVector = vreinterpretq_u32_u8(vqtbl1q_u8(vreinterpretq_u8_u32(srcVector), rgbaMask)) + srcVector = vreinterpretq_u32_u8(vqtbl1q_u8(vreinterpretq_u8_u32(srcVector), rgbaMask)); #else // no vqtbl1q_u8 const uint8x8_t low = vtbl1_u8(vreinterpret_u8_u32(vget_low_u32(srcVector)), rgbaMask);