qemu-trivial
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-trivial] [PATCH] tci: Make flush_icache_range() inline


From: Stefan Weil
Subject: [Qemu-trivial] [PATCH] tci: Make flush_icache_range() inline
Date: Thu, 24 Nov 2011 23:16:10 +0100

This is standard for other tcg targets and improves tci, too.

Signed-off-by: Stefan Weil <address@hidden>
---
 tcg/tci/tcg-target.c |    4 ----
 tcg/tci/tcg-target.h |    4 ++++
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/tcg/tci/tcg-target.c b/tcg/tci/tcg-target.c
index 5011c43..f26bec7 100644
--- a/tcg/tci/tcg-target.c
+++ b/tcg/tci/tcg-target.c
@@ -379,10 +379,6 @@ static const char *const 
tcg_target_reg_names[TCG_TARGET_NB_REGS] = {
 };
 #endif
 
-static void flush_icache_range(unsigned long start, unsigned long stop)
-{
-}
-
 static void patch_reloc(uint8_t *code_ptr, int type,
                         tcg_target_long value, tcg_target_long addend)
 {
diff --git a/tcg/tci/tcg-target.h b/tcg/tci/tcg-target.h
index 449373d..c35786c 100644
--- a/tcg/tci/tcg-target.h
+++ b/tcg/tci/tcg-target.h
@@ -157,4 +157,8 @@ void tci_disas(uint8_t opc);
 unsigned long tcg_qemu_tb_exec(CPUState *env, uint8_t *tb_ptr);
 #define tcg_qemu_tb_exec tcg_qemu_tb_exec
 
+static inline void flush_icache_range(unsigned long start, unsigned long stop)
+{
+}
+
 #endif /* TCG_TARGET_H */
-- 
1.7.2.5




reply via email to

[Prev in Thread] Current Thread [Next in Thread]