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
01fddcff
Commit
01fddcff
authored
Feb 21, 2009
by
Moritz Kroll
Browse files
typo
[r25552]
parent
45640ea7
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/libfirm/typerep.h
View file @
01fddcff
...
@@ -233,7 +233,7 @@ ir_allocation get_entity_allocation(const ir_entity *ent);
...
@@ -233,7 +233,7 @@ ir_allocation get_entity_allocation(const ir_entity *ent);
void
set_entity_allocation
(
ir_entity
*
ent
,
ir_allocation
al
);
void
set_entity_allocation
(
ir_entity
*
ent
,
ir_allocation
al
);
/** Return the name of the allocation type. */
/** Return the name of the allocation type. */
const
char
*
get_allocation_name
(
ir_allocation
vis
);
const
char
*
get_allocation_name
(
ir_allocation
al
);
/** Returns the visibility of an entity. */
/** Returns the visibility of an entity. */
ir_visibility
get_entity_visibility
(
const
ir_entity
*
ent
);
ir_visibility
get_entity_visibility
(
const
ir_entity
*
ent
);
...
...
ir/tr/entity.c
View file @
01fddcff
...
@@ -390,10 +390,10 @@ void
...
@@ -390,10 +390,10 @@ void
}
/* set_entity_allocation */
}
/* set_entity_allocation */
/* return the name of the visibility */
/* return the name of the visibility */
const
char
*
get_allocation_name
(
ir_allocation
al
l
)
const
char
*
get_allocation_name
(
ir_allocation
al
)
{
{
#define X(a) case a: return #a
#define X(a) case a: return #a
switch
(
al
l
)
{
switch
(
al
)
{
X
(
allocation_automatic
);
X
(
allocation_automatic
);
X
(
allocation_parameter
);
X
(
allocation_parameter
);
X
(
allocation_dynamic
);
X
(
allocation_dynamic
);
...
...
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