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
d8a73bc2
Commit
d8a73bc2
authored
Dec 03, 2013
by
yb9976
Browse files
Fixed indentation.
parent
863c956c
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/lower/lower_dw.c
View file @
d8a73bc2
...
...
@@ -815,27 +815,27 @@ static void lower_shr_helper(ir_node *node, ir_mode *mode,
ir_node
*
true_in
[
1
]
=
{
proj_true
};
ir_node
*
block_true
=
new_r_Block
(
irg
,
ARRAY_SIZE
(
true_in
),
true_in
);
ir_node
*
tres_high
=
new_rd_shrs
(
dbgi
,
block_true
,
left_high
,
right
,
mode
);
right
,
mode
);
ir_node
*
shift_low
=
new_rd_Shr
(
dbgi
,
block_true
,
left_low
,
right
,
low_unsigned
);
low_unsigned
);
ir_node
*
not_shiftval
=
new_rd_Not
(
dbgi
,
block_true
,
right
,
low_unsigned
);
low_unsigned
);
ir_node
*
tconv
=
create_conv
(
block_true
,
left_high
,
low_unsigned
);
low_unsigned
);
ir_node
*
one
=
new_r_Const
(
irg
,
get_mode_one
(
low_unsigned
));
ir_node
*
carry0
=
new_rd_Shl
(
dbgi
,
block_true
,
tconv
,
one
,
low_unsigned
);
low_unsigned
);
ir_node
*
carry1
=
new_rd_Shl
(
dbgi
,
block_true
,
carry0
,
not_shiftval
,
low_unsigned
);
not_shiftval
,
low_unsigned
);
ir_node
*
tres_low
=
new_rd_Or
(
dbgi
,
block_true
,
shift_low
,
carry1
,
low_unsigned
);
low_unsigned
);
/* false block => shift_width > 1word */
ir_node
*
false_in
[
1
]
=
{
proj_false
};
ir_node
*
block_false
=
new_r_Block
(
irg
,
ARRAY_SIZE
(
false_in
),
false_in
);
ir_node
*
fconv
=
create_conv
(
block_false
,
left_high
,
low_unsigned
);
ir_node
*
fres_low
=
new_rd_shrs
(
dbgi
,
block_false
,
fconv
,
right
,
low_unsigned
);
low_unsigned
);
int
cnsti
=
modulo_shift2
-
1
;
ir_node
*
cnst3
=
new_r_Const_long
(
irg
,
low_unsigned
,
cnsti
);
ir_node
*
fres_high
;
...
...
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