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
9d47b457
Commit
9d47b457
authored
Sep 24, 2008
by
Matthias Braun
Browse files
fix error introduced by r22215
[r22230]
parent
038aa856
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/opt/opt_inline.c
View file @
9d47b457
...
...
@@ -2131,8 +2131,11 @@ void inline_functions(int maxsize, int inline_threshold) {
callee
=
curr_call
->
callee
;
prop
=
get_irg_inline_property
(
callee
);
if
(
prop
==
irg_inline_forbidden
||
get_irg_additional_properties
(
callee
)
&
mtp_property_weak
)
{
if
(
prop
==
irg_inline_forbidden
||
(
get_irg_additional_properties
(
callee
)
&
mtp_property_weak
))
{
/* do not inline forbidden / weak graphs */
last_call
=
&
curr_call
->
next
;
curr_call
=
curr_call
->
next
;
continue
;
}
...
...
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