diff options
Diffstat (limited to 'executor/executor.cc')
| -rw-r--r-- | executor/executor.cc | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/executor/executor.cc b/executor/executor.cc index 89fd19ab9..585dd6f66 100644 --- a/executor/executor.cc +++ b/executor/executor.cc @@ -24,25 +24,15 @@ #if defined(__GNUC__) #define SYSCALLAPI #define NORETURN __attribute__((noreturn)) -#define ALIGNED(N) __attribute__((aligned(N))) #define PRINTF(fmt, args) __attribute__((format(printf, fmt, args))) -#define INPUT_DATA_ALIGNMENT 64 << 10 #else // Assuming windows/cl. #define SYSCALLAPI WINAPI #define NORETURN __declspec(noreturn) -#define INPUT_DATA_ALIGNMENT 4 << 10 -#define ALIGNED(N) __declspec(align(N)) // here we are not aligning the value because of msvc reporting the value as an illegal value #define PRINTF(fmt, args) #define __thread __declspec(thread) #endif -#if GOOS_openbsd -#define MUTABLE __attribute__((section(".openbsd.mutable"))) -#else -#define MUTABLE -#endif - #ifndef GIT_REVISION #define GIT_REVISION "unknown" #endif |
