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
4ce5894d
Commit
4ce5894d
authored
Mar 08, 2013
by
yb9976
Browse files
Use single char instead of string.
parent
8d2dea2d
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/bechordal_common.c
View file @
4ce5894d
...
...
@@ -99,14 +99,14 @@ void create_borders(ir_node *block, void *env_ptr)
/* If the node is no phi node we can examine the uses. */
if
(
!
is_Phi
(
irn
))
{
be_foreach_use
(
irn
,
env
->
cls
,
in_req_
,
op
,
op_req_
,
const
char
*
msg
=
"-"
;
char
msg
=
'-'
;
if
(
ir_nodeset_insert
(
&
live
,
op
))
{
border_use
(
op
,
step
,
1
);
msg
=
"X"
;
msg
=
'X'
;
}
DB
((
dbg
,
LEVEL_4
,
"
\t\t
%
s
pos: %d, use: %+F
\n
"
,
msg
,
i_
,
op
));
DB
((
dbg
,
LEVEL_4
,
"
\t\t
%
c
pos: %d, use: %+F
\n
"
,
msg
,
i_
,
op
));
);
}
++
step
;
...
...
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