mirror of
https://github.com/capstone-engine/capstone.git
synced 2024-12-01 01:10:29 +00:00
d91f964d40
ARM_SP == 13, ARM_LR == 14, and ARM_PC == 15, which is not the case * updated CMakeLists to include building arm regression test * added explicit casts for 64 bit visual studio 2012 build to get around truncation warnings from size_t conversion
6 lines
112 B
C
6 lines
112 B
C
#if defined(_MSC_VER) && _MSC_VER <= 1700
|
|
#include "msvc/headers/inttypes.h"
|
|
#else
|
|
#include <inttypes.h>
|
|
#endif
|