Files
Lucina3DS/externals/cryptopp/TestPrograms/test_arm_armv7.cpp
2025-02-06 22:24:29 +08: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;
}