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
296e3ca5
Commit
296e3ca5
authored
Aug 16, 2011
by
Andreas Zwinkau
Browse files
fix missing else
parent
52e71647
Changes
1
Show whitespace changes
Inline
Side-by-side
ir/opt/ldstopt.c
View file @
296e3ca5
...
...
@@ -1096,9 +1096,10 @@ ir_node *can_replace_load_by_const(const ir_node *load, ir_node *c)
if
(
is_reinterpret_cast
(
c_mode
,
l_mode
))
{
/* copy the value from the const code irg and cast it */
res
=
new_rd_Conv
(
dbgi
,
block
,
res
,
l_mode
);
}
}
else
{
return
NULL
;
}
}
return
res
;
}
...
...
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