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
093605f5
Commit
093605f5
authored
Oct 19, 2014
by
Christoph Mallon
Browse files
ident: Remove the unused function id_mangle_u().
parent
d3ea3c45
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/libfirm/ident.h
View file @
093605f5
...
...
@@ -61,9 +61,6 @@ FIRM_API const char *get_id_str(ident *id);
*/
FIRM_API
ident
*
id_unique
(
const
char
*
tag
);
/** mangle underscore: Returns a new ident that represents first_scnd. */
FIRM_API
ident
*
id_mangle_u
(
ident
*
first
,
ident
*
scnd
);
/** Returns a new ident that represents 'prefixscndsuffix'. */
FIRM_API
ident
*
id_mangle3
(
const
char
*
prefix
,
ident
*
middle
,
const
char
*
suffix
);
...
...
ir/ident/mangle.c
View file @
093605f5
...
...
@@ -56,12 +56,6 @@ static ident *id_mangle_3(ident *first, char c, ident *scnd)
return
new_ident_from_obst
(
&
mangle_obst
);
}
/* Returns a new ident that represents first_scnd. */
ident
*
id_mangle_u
(
ident
*
first
,
ident
*
scnd
)
{
return
id_mangle_3
(
first
,
'_'
,
scnd
);
}
void
firm_init_mangle
(
void
)
{
obstack_init
(
&
mangle_obst
);
...
...
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