From 650a14631226b1b9423c961b1f53b5db673cc88f Mon Sep 17 00:00:00 2001
From: Chris Robinson <chris.kcat@gmail.com>
Date: Thu, 1 Jun 2023 17:07:25 -0700
Subject: Define FORCE_ALIGN in config.h

---
 common/threads.h | 13 -------------
 1 file changed, 13 deletions(-)

(limited to 'common/threads.h')

diff --git a/common/threads.h b/common/threads.h
index 62d80828..1ef037bb 100644
--- a/common/threads.h
+++ b/common/threads.h
@@ -1,19 +1,6 @@
 #ifndef AL_THREADS_H
 #define AL_THREADS_H
 
-#if defined(__GNUC__) && defined(__i386__)
-/* force_align_arg_pointer may be required for proper stack alignment when SSE
- * code is used. GCC generates code with the assumption the stack pointer is
- * suitably aligned, while some systems (Windows, QNX) do not guarantee non-
- * exported functions will be properly aligned when called externally, and
- * older apps for other systems may have been built with a lower stack
- * alignment than expected by newer builds.
- */
-#define FORCE_ALIGN __attribute__((force_align_arg_pointer))
-#else
-#define FORCE_ALIGN
-#endif
-
 #if defined(__APPLE__)
 #include <AvailabilityMacros.h>
 #include <TargetConditionals.h>
-- 
cgit v1.2.3