certificate/include/cryptopp/TestPrograms/test_arm_armv7.cpp

14 lines
174 B
C++
Raw Permalink Normal View History

2025-06-26 15:15:38 +00:00
#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;
}