--- hatari/src/cpu/jit/compemu.h 2019/04/09 08:56:44 1.1.1.3 +++ hatari/src/cpu/jit/compemu.h 2019/04/09 08:57:59 1.1.1.4 @@ -25,8 +25,8 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with ARAnyM; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * along with ARAnyM; if not, write to the Free Software Foundation, + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335 USA */ #ifndef COMPEMU_H @@ -162,16 +162,8 @@ extern void set_cache_state(int enabled) extern int get_cache_state(void); extern uae_u32 get_jitted_size(void); #ifdef JIT -extern void flush_icache(uaecptr ptr, int n); -extern void flush_icache_hard(uaecptr ptr, int n); -static inline void flush_icache(int n) -{ - flush_icache(0, n); -} -static inline void flush_icache_hard(int n) -{ - flush_icache(0, n); -} +extern void flush_icache(int n); +extern void flush_icache_hard(int n); #endif extern void alloc_cache(void); extern int check_for_cache_miss(void);