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
4807b820
Commit
4807b820
authored
Oct 16, 2014
by
Matthias Braun
Browse files
add missing lower_alloc call
parent
81a5566a
Changes
1
Show whitespace changes
Inline
Side-by-side
ir/be/amd64/bearch_amd64.c
View file @
4807b820
...
...
@@ -30,6 +30,7 @@
#include "irgwalk.h"
#include "iropt_t.h"
#include "irprog_t.h"
#include "lower_alloc.h"
#include "lower_builtins.h"
#include "lower_calls.h"
#include "lower_mode_b.h"
...
...
@@ -721,6 +722,8 @@ static void amd64_lower_for_target(void)
/* lower for mode_b stuff */
ir_lower_mode_b
(
irg
,
mode_Lu
);
be_after_transform
(
irg
,
"lower-modeb"
);
lower_alloc
(
irg
,
AMD64_PO2_STACK_ALIGNMENT
);
be_after_transform
(
irg
,
"lower-alloc"
);
}
foreach_irp_irg
(
i
,
irg
)
{
...
...
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