summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2021-03-15 08:33:37 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2021-03-15 08:33:37 -0400
commitdf9bed0548bd6b9468894ab3e3711b423a1afaf1 (patch)
tree29ebd91a277b22afc8271b254a98bbc0b3325950 /include
parent37537e38f99e2d0ad055d8d72e244f9f83ea8125 (diff)
Revert HERE and USED macros
Diffstat (limited to 'include')
-rw-r--r--include/gba/defines.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/gba/defines.h b/include/gba/defines.h
index ce276862c..02d687ade 100644
--- a/include/gba/defines.h
+++ b/include/gba/defines.h
@@ -16,10 +16,8 @@
#if MODERN
#define NOINLINE __attribute__((noinline))
-#define HERE __attribute__((no_reorder))
#else
#define NOINLINE
-#define HERE
#endif
#define ALIGNED(n) __attribute__((aligned(n)))
@@ -96,13 +94,6 @@
// Some functions are strictly inline asm
#define NAKED __attribute__((naked))
-
-// Silence IDE warnings
-#if __GNUC__ >= 4
-#define USED __attribute__((used))
-#else
-#define USED
-#endif
#define UNUSED __attribute__((unused))
#endif // GUARD_GBA_DEFINES