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
2ebb0713
Commit
2ebb0713
authored
Sep 14, 2012
by
Manuel Mohr
Browse files
Fixed some typos.
parent
8077658c
Changes
2
Hide whitespace changes
Inline
Side-by-side
ir/lower/lower_calls.c
View file @
2ebb0713
...
...
@@ -47,7 +47,7 @@ static pmap *lowered_mtps;
/**
* Default implementation for finding a pointer type for a given element type.
* Simpl
e
create a new one.
* Simpl
y
create a new one.
*/
static
ir_type
*
get_pointer_type
(
ir_type
*
dest_type
)
{
...
...
@@ -602,7 +602,7 @@ static void fix_compound_ret(cl_entry *entry, ir_type *ctp)
set_irn_in
(
call
,
pos
,
new_in
);
}
static
ir_entity
*
create_compound_arg_entit
i
y
(
ir_graph
*
irg
,
ir_type
*
type
)
static
ir_entity
*
create_compound_arg_entity
(
ir_graph
*
irg
,
ir_type
*
type
)
{
ir_type
*
frame
=
get_irg_frame_type
(
irg
);
ident
*
id
=
id_unique
(
"$compound_param.%u"
);
...
...
@@ -635,7 +635,7 @@ static void fix_compound_params(cl_entry *entry, ir_type *ctp)
continue
;
arg
=
get_Call_param
(
call
,
i
);
arg_entity
=
create_compound_arg_entit
i
y
(
irg
,
type
);
arg_entity
=
create_compound_arg_entity
(
irg
,
type
);
block
=
get_nodes_block
(
call
);
sel
=
new_rd_simpleSel
(
dbgi
,
block
,
nomem
,
frame
,
arg_entity
);
copyb
=
new_rd_CopyB
(
dbgi
,
block
,
mem
,
sel
,
arg
,
type
);
...
...
ir/lower/lower_calls.h
View file @
2ebb0713
...
...
@@ -34,7 +34,7 @@ typedef enum compound_call_lowering_flags {
LF_NONE
=
0
,
/**< no additional flags */
LF_RETURN_HIDDEN
=
1
<<
0
,
/**< return the hidden address instead of void */
LF_DONT_LOWER_ARGUMENTS
=
1
<<
1
,
/**< don't lower compound call arguments
(some backends can handle them themsel
f
es) */
(some backends can handle them themsel
v
es) */
}
compound_call_lowering_flags
;
ENUM_BITSET
(
compound_call_lowering_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