Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
55be1ae7
Commit
55be1ae7
authored
Apr 10, 2006
by
Christian Würdig
Browse files
changed function variables type
parent
ed1aab0a
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/ia32/ia32_emitter.c
View file @
55be1ae7
...
...
@@ -888,7 +888,7 @@ static void emit_ia32_CJmpAM(const ir_node *irn, ia32_emit_env_t *env) {
/**
* Emits code for conditional x87 floating point jump with two variables.
*/
static
void
emit_ia32_x87CondJmp
(
const
ir_node
*
irn
,
ia32_emit_env_t
*
env
)
{
static
void
emit_ia32_x87CondJmp
(
ir_node
*
irn
,
ia32_emit_env_t
*
env
)
{
FILE
*
F
=
env
->
out
;
char
cmd_buf
[
SNPRINTF_BUF_LEN
];
char
cmnt_buf
[
SNPRINTF_BUF_LEN
];
...
...
@@ -918,7 +918,7 @@ static void emit_ia32_x87CondJmp(const ir_node *irn, ia32_emit_env_t *env) {
}
if
(
reverse
)
set_ia32_pncode
(
irn
,
get_negated_pnc
(
get_ia32_pncode
(
irn
),
mode_Is
));
set_ia32_pncode
(
irn
,
(
long
)
get_negated_pnc
(
get_ia32_pncode
(
irn
),
mode_Is
));
snprintf
(
cmd_buf
,
SNPRINTF_BUF_LEN
,
"%s %s"
,
instr
,
reg
);
lc_esnprintf
(
ia32_get_arg_env
(),
cmnt_buf
,
SNPRINTF_BUF_LEN
,
"/* %+F */"
,
irn
);
...
...
Write
Preview
Markdown
is supported
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