Fix LPC1768 tests

Don't have GCC_ARM use GCC_CR's memory region in mem.c.  This fixes
some tests.
Russ Butler 2016-06-12 23:16:55 +01:00
parent b820653efd
commit a0ccc12f70
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@ struct mem {
#elif defined(TARGET_LPC1768)
# if defined (__ICCARM__)
# define ETHMEM_SECTION
# elif defined(TOOLCHAIN_GCC_CR) || defined(TOOLCHAIN_GCC_ARM)
# elif defined(TOOLCHAIN_GCC_CR)
# define ETHMEM_SECTION __attribute__((section(".data.$RamPeriph32")))
# else
# define ETHMEM_SECTION __attribute__((section("AHBSRAM0"),aligned))