Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xing Lin
qemu
Commits
cc9442b9
Commit
cc9442b9
authored
Nov 26, 2005
by
bellard
Browse files
fixed warning
git-svn-id:
svn://svn.savannah.nongnu.org/qemu/trunk@1666
c046a42c-6fe2-441c-8c8c-71466251a162
parent
15338fd7
Changes
1
Hide whitespace changes
Inline
Side-by-side
cpu-exec.c
View file @
cc9442b9
...
...
@@ -192,7 +192,7 @@ static inline TranslationBlock *tb_find_fast(void)
pc
=
env
->
nip
;
#elif defined(TARGET_MIPS)
flags
=
env
->
hflags
&
MIPS_HFLAGS_TMASK
;
cs_base
=
NULL
;
cs_base
=
0
;
pc
=
env
->
PC
;
#else
#error unsupported CPU
...
...
@@ -1056,7 +1056,7 @@ static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
}
/* see if it is an MMU fault */
ret
=
cpu_
ppc
_handle_mmu_fault
(
env
,
address
,
is_write
,
msr_pr
,
0
);
ret
=
cpu_
mips
_handle_mmu_fault
(
env
,
address
,
is_write
,
1
,
0
);
if
(
ret
<
0
)
return
0
;
/* not an MMU fault */
if
(
ret
==
0
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment