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
4467a3c2
Commit
4467a3c2
authored
Feb 12, 2010
by
Matthias Braun
Browse files
fix warning
[r27134]
parent
b9deb108
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/ia32/ia32_transform.c
View file @
4467a3c2
...
...
@@ -3166,7 +3166,8 @@ typedef struct setcc_transform {
* Find a transformation that creates 0 and 1 from
* tv_t and tv_f.
*/
static
void
find_const_transform
(
pn_Cmp
pnc
,
tarval
*
t
,
tarval
*
f
,
setcc_transform_t
*
res
,
int
can_permutate
)
static
void
find_const_transform
(
pn_Cmp
pnc
,
tarval
*
t
,
tarval
*
f
,
setcc_transform_t
*
res
)
{
unsigned
step
=
0
;
...
...
@@ -3449,7 +3450,7 @@ static ir_node *gen_Mux(ir_node *node)
/* yes, we can permutate its inputs */
permutate_allowed
=
1
;
}
find_const_transform
(
pnc
,
tv_true
,
tv_false
,
&
res
,
0
);
find_const_transform
(
pnc
,
tv_true
,
tv_false
,
&
res
);
new_node
=
node
;
if
(
res
.
permutate_cmp_ins
)
{
ia32_attr_t
*
attr
=
get_ia32_attr
(
flags
);
...
...
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