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
edb11cbd
Commit
edb11cbd
authored
Oct 04, 2008
by
Christoph Mallon
Browse files
Treat conversions between the same size as downconv to get rid of unnecessary conversions.
[r22477]
parent
2008b06d
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/opt/convopt.c
View file @
edb11cbd
...
...
@@ -87,7 +87,7 @@ int is_downconv(ir_mode *src_mode, ir_mode *dest_mode)
return
mode_is_int
(
src_mode
)
&&
mode_is_int
(
dest_mode
)
&&
get_mode_size_bits
(
dest_mode
)
<
get_mode_size_bits
(
src_mode
);
get_mode_size_bits
(
dest_mode
)
<
=
get_mode_size_bits
(
src_mode
);
}
static
...
...
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