mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Define _ARM_ARCH_5E too, so that we know if pld/strd/ldrd are available.
MFC After: 3 days
This commit is contained in:
parent
d302c56d9b
commit
258f866cbf
1 changed files with 6 additions and 1 deletions
|
|
@ -137,10 +137,15 @@
|
|||
|
||||
#if defined (_ARM_ARCH_6) || defined (__ARM_ARCH_5__) || \
|
||||
defined (__ARM_ARCH_5T__) || defined (__ARM_ARCH_5TE__) || \
|
||||
defined (__ARM_ARCH_5TEJ__)
|
||||
defined (__ARM_ARCH_5TEJ__) || defined (__ARM_ARCH_5E__)
|
||||
#define _ARM_ARCH_5
|
||||
#endif
|
||||
|
||||
#if defined (_ARM_ARCH_6) || defined(__ARM_ARCH_5TE__) || \
|
||||
defined(__ARM_ARCH_5TEJ__) || defined(__ARM_ARCH_5E__)
|
||||
#define _ARM_ARCH_5E
|
||||
#endif
|
||||
|
||||
#if defined (_ARM_ARCH_5) || defined (__ARM_ARCH_4T__)
|
||||
#define _ARM_ARCH_4T
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue