First Commit
This commit is contained in:
13
externals/cryptopp/TestPrograms/test_arm_armv7.cpp
vendored
Normal file
13
externals/cryptopp/TestPrograms/test_arm_armv7.cpp
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
#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;
|
||||
}
|
||||
Reference in New Issue
Block a user