Check for ARMv7 instructions
()
| 1672 | |
| 1673 | |
| 1674 | def is_arch_armv7(): |
| 1675 | """Check for ARMv7 instructions""" |
| 1676 | cc_macros_cache = cc_macros() |
| 1677 | return cc_macros_cache.get('__ARM_ARCH') == '7' |
| 1678 | |
| 1679 | |
| 1680 | def is_arm_hard_float_abi(): |
no test coverage detected
searching dependent graphs…