Fix a clobbering noinline declaration

master
Webster Sheets 2020-03-28 13:54:03 -04:00
parent bdbdf23070
commit fee469c6fd
1 changed files with 0 additions and 5 deletions

View File

@ -7,9 +7,6 @@
#define __PROFILER_FULL_TYPE_EXPANSION__
#undef noinline
#undef fastcall
//#define USE_CHRONO
#if !defined(USE_CHRONO) && (defined(__arm__) || defined(__aarch64__) || defined(_M_AMD64) || defined(_WIN64) || defined(_M_X64))
// this isn't optional for __arm__ or x64 builds
@ -24,12 +21,10 @@
#define __PRETTY_FUNCTION__ __FUNCSIG__
#define PROFILE_CONCAT( a, b ) a "/" b
#define noinline __declspec(noinline)
#define fastcall __fastcall
#else
#define PROFILE_CONCAT( a, b ) b
#define noinline __attribute__ ((noinline))
#define fastcall
#endif