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
9696d48d
Commit
9696d48d
authored
May 30, 2006
by
Christian Würdig
Browse files
added missing % for fucom instruction
parent
e93474a1
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/ia32/ia32_emitter.c
View file @
9696d48d
...
...
@@ -512,8 +512,6 @@ const char *ia32_emit_x87_binop(const ir_node *n, ia32_emit_env_t *env) {
assert
(
0
&&
"unsupported op type"
);
}
#undef PRODUCES_RESULT
return
buf
;
}
...
...
@@ -962,7 +960,7 @@ static void emit_ia32_x87CondJmp(ir_node *irn, ia32_emit_env_t *env) {
if
(
reverse
)
set_ia32_pncode
(
irn
,
(
long
)
get_negated_pnc
(
get_ia32_pncode
(
irn
),
mode_Is
));
snprintf
(
cmd_buf
,
SNPRINTF_BUF_LEN
,
"%s %s"
,
instr
,
reg
);
snprintf
(
cmd_buf
,
SNPRINTF_BUF_LEN
,
"%s
%%
%s"
,
instr
,
reg
);
lc_esnprintf
(
ia32_get_arg_env
(),
cmnt_buf
,
SNPRINTF_BUF_LEN
,
"/* %+F */"
,
irn
);
IA32_DO_EMIT
(
irn
);
lc_esnprintf
(
ia32_get_arg_env
(),
cmd_buf
,
SNPRINTF_BUF_LEN
,
"fnstsw %%ax"
,
irn
);
...
...
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