aboutsummaryrefslogtreecommitdiff
path: root/riscv/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'riscv/common.h')
-rw-r--r--riscv/common.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/riscv/common.h b/riscv/common.h
index 8ddd984..3c523d0 100644
--- a/riscv/common.h
+++ b/riscv/common.h
@@ -6,4 +6,6 @@
#define likely(x) __builtin_expect(x, 1)
#define unlikely(x) __builtin_expect(x, 0)
+#define NOINLINE __attribute__ ((noinline))
+
#endif