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
d8ae1e7a
Commit
d8ae1e7a
authored
Oct 19, 2014
by
Christoph Mallon
Browse files
ia32: Correct name of between_type.
parent
04ef9a5a
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/ia32/ia32_transform.c
View file @
d8ae1e7a
...
...
@@ -5841,13 +5841,12 @@ static ir_type *ia32_get_between_type(bool omit_fp)
static
ir_type
*
omit_fp_between_type
=
NULL
;
if
(
between_type
==
NULL
)
{
between_type
=
new_type_class
(
new_id_from_str
(
"
amd64
_between_type"
));
between_type
=
new_type_class
(
new_id_from_str
(
"
ia32
_between_type"
));
/* between type contains return address + saved base pointer */
unsigned
gp_size
=
get_mode_size_bytes
(
ia32_mode_gp
);
set_type_size_bytes
(
between_type
,
2
*
gp_size
);
omit_fp_between_type
=
new_type_class
(
new_id_from_str
(
"amd64_between_type"
));
omit_fp_between_type
=
new_type_class
(
new_id_from_str
(
"ia32_between_type"
));
/* between type contains return address */
set_type_size_bytes
(
omit_fp_between_type
,
gp_size
);
}
...
...
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