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
2d9db866
Commit
2d9db866
authored
Mar 10, 2009
by
Michael Beck
Browse files
- Do not produce Loads WITHOUT memory
[r25662]
parent
151f1b11
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/lower/lower_copyb.c
View file @
2d9db866
...
...
@@ -108,7 +108,7 @@ static void lower_copyb_nodes(ir_node *irn, unsigned mode_bytes) {
addr_const
=
new_r_Const_long
(
irg
,
mode_Iu
,
offset
);
add
=
new_r_Add
(
irg
,
block
,
addr_dst
,
addr_const
,
addr_mode
);
store
=
new_r_Store
(
irg
,
block
,
mem
,
add
,
load_res
,
0
);
store
=
new_r_Store
(
irg
,
block
,
load_
mem
,
add
,
load_res
,
0
);
store_mem
=
new_r_Proj
(
irg
,
block
,
store
,
mode_M
,
pn_Store_M
);
mem
=
store_mem
;
...
...
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