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
e58143b3
Commit
e58143b3
authored
Nov 09, 2003
by
bellard
Browse files
ppc fix
git-svn-id:
svn://svn.savannah.nongnu.org/qemu/trunk@442
c046a42c-6fe2-441c-8c8c-71466251a162
parent
1f5476fc
Changes
1
Show whitespace changes
Inline
Side-by-side
target-sparc/op.c
View file @
e58143b3
...
...
@@ -480,9 +480,9 @@ void OPPROTO op_restore_T0 (void)
void
OPPROTO
op_generic_branch
(
void
)
{
if
(
T0
)
JUMP_TB
(
__func__
,
PARAM1
,
0
,
PARAM2
);
JUMP_TB
(
op_generic_branch
,
PARAM1
,
0
,
PARAM2
);
else
JUMP_TB
(
__func__
,
PARAM1
,
1
,
PARAM3
);
JUMP_TB
(
op_generic_branch
,
PARAM1
,
1
,
PARAM3
);
FORCE_RET
();
}
...
...
@@ -491,10 +491,6 @@ void OPPROTO op_generic_branch_a (void)
if
(
T0
)
env
->
npc
=
PARAM3
;
else
JUMP_TB
(
__func__
,
PARAM1
,
0
,
PARAM2
);
JUMP_TB
(
op_generic_branch_a
,
PARAM1
,
0
,
PARAM2
);
FORCE_RET
();
}
void
OPPROTO
op_noop
(
void
)
{
}
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