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
078dca01
Commit
078dca01
authored
Mar 24, 2014
by
Matthias Braun
Browse files
lower_dw: remove unnecessary re-enqueue case in lower_Store
parent
8c7c994e
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/lower/lower_dw.c
View file @
078dca01
...
...
@@ -396,17 +396,9 @@ static void lower_Load(ir_node *node, ir_mode *mode)
*/
static
void
lower_Store
(
ir_node
*
node
,
ir_mode
*
mode
)
{
(
void
)
mode
;
ir_node
*
value
=
get_Store_value
(
node
);
const
lower64_entry_t
*
entry
=
get_node_entry
(
value
);
(
void
)
mode
;
assert
(
entry
);
if
(
!
entry
->
low_word
)
{
/* not ready yet, wait */
pdeq_putr
(
env
->
waitq
,
node
);
return
;
}
ir_graph
*
irg
=
get_irn_irg
(
node
);
ir_node
*
adr
=
get_Store_ptr
(
node
);
...
...
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