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
b239c40a
Commit
b239c40a
authored
Oct 12, 2016
by
Christoph Mallon
Browse files
amd64: Give Convs in rewrite_unsigned_float_Conv() debug info.
parent
45f443c3
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/amd64/amd64_bearch.c
View file @
b239c40a
...
...
@@ -223,7 +223,7 @@ static void rewrite_unsigned_float_Conv(ir_node *node)
dbg_info
*
dbgi
=
get_irn_dbg_info
(
node
);
ir_node
*
block
=
get_nodes_block
(
node
);
ir_node
*
in
=
get_Conv_op
(
node
);
ir_node
*
in_xmm
=
new_r_Conv
(
block
,
in
,
amd64_mode_xmm
);
ir_node
*
in_xmm
=
new_r
d
_Conv
(
dbgi
,
block
,
in
,
amd64_mode_xmm
);
ir_tarval
*
magic0
=
new_integer_tarval_from_str
(
"4530000043300000"
,
16
,
0
,
16
,
amd64_mode_xmm
);
...
...
@@ -238,7 +238,7 @@ static void rewrite_unsigned_float_Conv(ir_node *node)
ir_node
*
subpd
=
new_bd_amd64_l_subpd
(
dbgi
,
block
,
punpck
,
const1
);
ir_node
*
haddpd
=
new_bd_amd64_l_haddpd
(
dbgi
,
block
,
subpd
,
subpd
);
ir_mode
*
mode
=
get_irn_mode
(
node
);
ir_node
*
conv
=
new_r_Conv
(
block
,
haddpd
,
mode
);
ir_node
*
conv
=
new_r
d
_Conv
(
dbgi
,
block
,
haddpd
,
mode
);
exchange
(
node
,
conv
);
}
...
...
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