|
|||||||||||
Technical Support Support Resources
Product Information |
C166: Incrementing Huge Pointer Only Changes Lower 16-bitsInformation in this article applies to:
SYMPTOMSI am trying to compute the CRC of a 96Kb area in flash memory. Doing this involves incrementing a pointer which is passed as a function argument, defined as
The C166 compiler increments only the lower 16 bits of the pointer p, which gives the wrong result. Is this fixed in a later version? CAUSEThe huge memory type only supports 16-bit address calculation. This means that only the lower 16-bits of a pointer may be used to calculate addresses. The result is that the huge memory type can only access objects up to 64Kb in size. RESOLUTIONChange your pointer to the xhuge memory type. xhuge supports full 32-bit address calculation and can access objects with 'unlimited' size. MORE INFORMATION
Last Reviewed: Thursday, February 25, 2021 | ||||||||||
|
Arm’s Privacy Policy has been updated. By continuing to use our site, you consent to Arm’s Privacy Policy. Please review our Privacy Policy to learn more about our collection, use and transfers
of your data.