mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-27 11:50:29 +00:00
5aa1f124dc
- improve stack unwindability on x64 for GCC by not modifying RBP/RSP registers in inline assembly
22 lines
276 B
C
22 lines
276 B
C
#ifndef CRYPTOPP_PCH_H
|
|
#define CRYPTOPP_PCH_H
|
|
|
|
#ifdef CRYPTOPP_GENERATE_X64_MASM
|
|
|
|
#include "cpu.h"
|
|
|
|
#else
|
|
|
|
#include "config.h"
|
|
|
|
#ifdef USE_PRECOMPILED_HEADERS
|
|
#include "simple.h"
|
|
#include "secblock.h"
|
|
#include "misc.h"
|
|
#include "smartptr.h"
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|