Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
Qt for MCUs 2.8, Qt for MCUs 2.8.1
-
None
Description
In line 42 in src/graphics/drawhelper.h the following condition is used for including the arm_neon.h header file:
#if defined(QUL_PROCESSOR_ARM) && defined(QUL_CC_CLANG)
But in line 559 (before using the ARM NEON instructions) the condition is:
#if defined(ARM_NEON)
, with the result that in certain situations (e.g. gcc compiler) it goes into the block without including the header file.