From bbe881f3c5435d02eeb7c28515bfb301470f2875 Mon Sep 17 00:00:00 2001 From: Andrew Waterman Date: Mon, 7 Oct 2019 15:03:08 +0200 Subject: Speed up compilation of disasm.cc, especially in clang --- riscv/common.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'riscv/common.h') 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 -- cgit v1.1