mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-18 17:14:28 -04:00
lib: simplify pragma macros
This commit is contained in:
parent
edf80192d9
commit
18168d54c3
6 changed files with 9 additions and 14 deletions
|
@ -20,16 +20,12 @@
|
|||
#define AMS_PRAGMA(X) \
|
||||
_Pragma(#X)
|
||||
|
||||
#define AMS_PRAGMA_BEGIN_OPTIMIZE_O3() \
|
||||
_Pragma("GCC push_options") \
|
||||
_Pragma("GCC optimize (\"-O3\")")
|
||||
|
||||
#define AMS_PRAGMA_BEGIN_OPTIMIZE_OS() \
|
||||
_Pragma("GCC push_options") \
|
||||
_Pragma("GCC optimize (\"-Os\")")
|
||||
#define AMS_PRAGMA_BEGIN_OPTIMIZE(X) \
|
||||
AMS_PRAGMA(GCC push_options) \
|
||||
AMS_PRAGMA(GCC optimize(X))
|
||||
|
||||
#define AMS_PRAGMA_END_OPTIMIZE() \
|
||||
_Pragma("GCC pop_options")
|
||||
AMS_PRAGMA(GCC pop_options)
|
||||
|
||||
#define AMS_PRAGMA_BEGIN_PACK(n) \
|
||||
AMS_PRAGMA(pack(push, n))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue