- port x64 assembly code to MASM
- improve stack unwindability on x64 for GCC by not modifying RBP/RSP registers in inline assemblyimport/raw
parent
5a5af8f929
commit
da23735ea2
|
|
@ -1,6 +1,12 @@
|
||||||
#ifndef CRYPTOPP_PCH_H
|
#ifndef CRYPTOPP_PCH_H
|
||||||
#define CRYPTOPP_PCH_H
|
#define CRYPTOPP_PCH_H
|
||||||
|
|
||||||
|
#ifdef CRYPTOPP_GENERATE_X64_MASM
|
||||||
|
|
||||||
|
#include "cpu.h"
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
#ifdef USE_PRECOMPILED_HEADERS
|
#ifdef USE_PRECOMPILED_HEADERS
|
||||||
|
|
@ -11,3 +17,5 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue