diff options
author | comex | 2015-01-11 21:13:04 -0500 |
---|---|---|
committer | comex | 2015-01-11 21:13:04 -0500 |
commit | c03900f1d25ee8a7feaf836665210ea96549d346 (patch) | |
tree | 46ec20328b274ce975cc51627508c0290a533c5e /lib/dis.h | |
parent | theoretically fix thumb (diff) | |
download | substitute-c03900f1d25ee8a7feaf836665210ea96549d346.tar.gz |
thumb2 progress
Diffstat (limited to '')
-rw-r--r-- | lib/dis.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,8 +1,10 @@ +#pragma once #include <stdbool.h> #define UNUSED __attribute__((unused)) #define INLINE inline __attribute__((always_inline)) +#define NOINLINE inline __attribute__((noinline)) struct bitslice_run { int inpos, outpos, len; |