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
0e5b00fb
Commit
0e5b00fb
authored
Jul 13, 2015
by
yb9976
Browse files
Fixed indentation.
parent
06b23d6c
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/ir/iropt.c
View file @
0e5b00fb
...
@@ -5192,9 +5192,9 @@ cmp_x_eq_0:
...
@@ -5192,9 +5192,9 @@ cmp_x_eq_0:
if
(
get_tarval_popcount
(
tv
)
==
1
)
{
if
(
get_tarval_popcount
(
tv
)
==
1
)
{
/* special case: (x % 2^n) CMP 0 ==> x & (2^n-1) CMP 0 */
/* special case: (x % 2^n) CMP 0 ==> x & (2^n-1) CMP 0 */
ir_node
*
v
=
get_binop_left
(
op
);
ir_node
*
v
=
get_binop_left
(
op
);
ir_node
*
blk
=
get_nodes_block
(
op
);
ir_node
*
blk
=
get_nodes_block
(
op
);
ir_mode
*
mode
=
get_irn_mode
(
v
);
ir_mode
*
mode
=
get_irn_mode
(
v
);
tv
=
tarval_sub
(
tv
,
get_mode_one
(
mode
),
NULL
);
tv
=
tarval_sub
(
tv
,
get_mode_one
(
mode
),
NULL
);
left
=
new_rd_And
(
get_irn_dbg_info
(
op
),
blk
,
v
,
new_r_Const
(
irg
,
tv
),
mode
);
left
=
new_rd_And
(
get_irn_dbg_info
(
op
),
blk
,
v
,
new_r_Const
(
irg
,
tv
),
mode
);
...
...
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