ext-cryptopp/TestPrograms/test_arm_armv7.cpp
2022-02-11 22:14:50 -05:00

14 lines
187 B
C++

#include <stdint.h>
int main(int argc, char* argv[])
{
#if __ARM_ARCH >= 7
// Do nothing
#elif __ARM_ARCH_7A__
// Do nothing
#else
int n[-1];
#endif
return 0;
}