diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-07-01 20:01:19 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-07-01 20:01:19 +0000 |
commit | 663d0824c7eb70c44e9066caf22390a1afcfc392 (patch) | |
tree | 493d25a4b894fea24ee91d07efea4309044ba54c /target-cris/cpu.h | |
parent | be5cb8ba2e9942139fb69bf75d2af1819dbff6ba (diff) | |
download | qemu-663d0824c7eb70c44e9066caf22390a1afcfc392.tar.gz qemu-663d0824c7eb70c44e9066caf22390a1afcfc392.tar.bz2 qemu-663d0824c7eb70c44e9066caf22390a1afcfc392.zip |
Move interrupt_request and user_mode_only to common cpu state.
Save and restore env->interrupt_request and env->halted.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4817 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-cris/cpu.h')
-rw-r--r-- | target-cris/cpu.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/target-cris/cpu.h b/target-cris/cpu.h index e454568588..39b1061729 100644 --- a/target-cris/cpu.h +++ b/target-cris/cpu.h @@ -125,7 +125,6 @@ typedef struct CPUCRISState { /* X flag at the time of cc snapshot. */ int cc_x; - int interrupt_request; int interrupt_vector; int fault_vector; int trap_vector; @@ -156,8 +155,6 @@ typedef struct CPUCRISState { uint32_t lo; } tlbsets[2][4][16]; - int user_mode_only; - CPU_COMMON } CPUCRISState; |