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
4d66883a
Commit
4d66883a
authored
Apr 02, 2007
by
Matthias Braun
Browse files
we save entities not idents in ia32 symconsts now
[r12649]
parent
89f9163d
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/ia32/ia32_finish.c
View file @
4d66883a
...
...
@@ -67,12 +67,12 @@ static void ia32_transform_sub_to_neg_add(ir_node *irn, ia32_code_gen_t *cg) {
/* generate the neg src2 */
if
(
mode_is_float
(
mode
))
{
int
size
;
i
d
ent
*
name
;
i
r_
ent
ity
*
entity
;
res
=
new_rd_ia32_xXor
(
dbg
,
irg
,
block
,
noreg
,
noreg
,
in2
,
noreg_fp
,
nomem
);
size
=
get_mode_size_bits
(
mode
);
name
=
ia32_gen_fp_known_const
(
size
==
32
?
ia32_SSIGN
:
ia32_DSIGN
);
set_ia32_am_sc
(
res
,
name
);
entity
=
ia32_gen_fp_known_const
(
size
==
32
?
ia32_SSIGN
:
ia32_DSIGN
);
set_ia32_am_sc
(
res
,
entity
);
set_ia32_op_type
(
res
,
ia32_AddrModeS
);
set_ia32_ls_mode
(
res
,
get_ia32_ls_mode
(
irn
));
}
else
{
...
...
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