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
adb96a61
Commit
adb96a61
authored
Jul 29, 2008
by
Matthias Braun
Browse files
don't do the store-float-conv optimisation with double->unsigned
[r20766]
parent
bb930c31
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/ia32/ia32_transform.c
View file @
adb96a61
...
...
@@ -2374,6 +2374,10 @@ static int is_float_to_int32_conv(const ir_node *node)
if
(
get_mode_size_bits
(
mode
)
!=
32
||
!
ia32_mode_needs_gp_reg
(
mode
))
return
0
;
/* don't report unsigned as conv to 32bit, because we really need to do
* a vfist with 64bit signed in this case */
if
(
!
mode_is_signed
(
mode
))
return
0
;
if
(
!
is_Conv
(
node
))
return
0
;
...
...
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