summary refs log tree commit diff stats
path: root/target-lm32/exec.h
diff options
context:
space:
mode:
Diffstat (limited to 'target-lm32/exec.h')
-rw-r--r--target-lm32/exec.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/target-lm32/exec.h b/target-lm32/exec.h
index 348b723f29..2a227b2953 100644
--- a/target-lm32/exec.h
+++ b/target-lm32/exec.h
@@ -22,12 +22,6 @@
 register struct CPULM32State *env asm(AREG0);
 
 #include "cpu.h"
-#include "exec-all.h"
-
-static inline int cpu_has_work(CPUState *env)
-{
-    return env->interrupt_request & CPU_INTERRUPT_HARD;
-}
 
 static inline int cpu_halted(CPUState *env)
 {
@@ -42,9 +36,3 @@ static inline int cpu_halted(CPUState *env)
     }
     return EXCP_HALTED;
 }
-
-static inline void cpu_pc_from_tb(CPUState *env, TranslationBlock *tb)
-{
-    env->pc = tb->pc;
-}
-