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
bd36b42a
Commit
bd36b42a
authored
Mar 02, 2009
by
Matthias Braun
Browse files
add missing non-inline implementation of get/set_entity_alignment
[r25590]
parent
3e8544aa
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/tr/entity.c
View file @
bd36b42a
...
...
@@ -512,6 +512,16 @@ void
_set_entity_aligned
(
ent
,
a
);
}
unsigned
(
get_entity_alignment
)(
const
ir_entity
*
ent
)
{
return
_get_entity_alignment
(
ent
);
}
void
(
set_entity_alignment
)(
ir_entity
*
ent
,
unsigned
alignment
)
{
_set_entity_alignment
(
ent
,
alignment
);
}
/* Return the name of the alignment. */
const
char
*
get_align_name
(
ir_align
a
)
{
...
...
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