Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
c47eb955
Commit
c47eb955
authored
Aug 15, 2011
by
Matthias Braun
Browse files
fix warnings reported by cparser
parent
5540c804
Changes
2
Hide whitespace changes
Inline
Side-by-side
ir/lower/lower_softfloat.c
View file @
c47eb955
...
...
@@ -77,7 +77,7 @@ static ir_type *unop_tp_lu_f;
/** A map from a method type to its lowered type. */
static
pmap
*
lowered_type
;
ir_nodeset_t
created_mux_nodes
;
static
ir_nodeset_t
created_mux_nodes
;
/**
* @return The lowered (floating point) mode.
...
...
@@ -313,7 +313,7 @@ static ir_node *create_softfloat_symconst(const ir_node *n, const char *name)
assert
(
double_types
<=
3
);
if
(
float_types
+
double_types
>
1
)
snprintf
(
buf
,
sizeof
(
buf
),
"__%s%s%s%s%
d
"
,
name
,
first_param
,
second_param
,
result
,
float_types
+
double_types
);
snprintf
(
buf
,
sizeof
(
buf
),
"__%s%s%s%s%
u
"
,
name
,
first_param
,
second_param
,
result
,
float_types
+
double_types
);
else
snprintf
(
buf
,
sizeof
(
buf
),
"__%s%s%s%s"
,
name
,
first_param
,
second_param
,
result
);
...
...
@@ -475,7 +475,7 @@ static void lower_Call(ir_node *node)
*/
static
void
lower_Cmp
(
ir_node
*
n
)
{
ir_node
*
symconst
;
ir_node
*
symconst
=
NULL
;
ir_node
*
block
=
get_nodes_block
(
n
);
ir_node
*
call_result
=
NULL
;
dbg_info
*
dbgi
=
get_irn_dbg_info
(
n
);
...
...
ir/stat/dags.c
View file @
c47eb955
...
...
@@ -391,7 +391,7 @@ void count_dags_in_graph(graph_entry_t *global, graph_entry_t *graph)
entry
->
num_roots
,
entry
->
num_nodes
,
entry
->
num_inner_nodes
,
entry
->
is_tree
,
(
unsigned
)
entry
->
is_tree
,
get_irn_node_nr
(
entry
->
root
));
}
/* for */
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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