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
41c2717f
Commit
41c2717f
authored
Aug 02, 2009
by
Matthias Braun
Browse files
fix warning and compilation error in optimized mode
[r26311]
parent
df5f3a09
Changes
1
Show whitespace changes
Inline
Side-by-side
ir/opt/opt_ldst.c
View file @
41c2717f
...
...
@@ -196,8 +196,13 @@ static void dump_curr(block_t *bl, const char *s) {
}
/* dump_curr */
#else
#define dump_block_list()
#define dump_curr(bl, s)
static
void
dump_block_list
(
ldst_env
*
env
)
{
(
void
)
env
;
}
static
void
dump_curr
(
block_t
*
bl
,
const
char
*
s
)
{
(
void
)
bl
;
(
void
)
s
;
}
#endif
/* DEBUG_libfirm */
/** Get the block entry for a block node */
...
...
@@ -1932,7 +1937,7 @@ static int insert_Load(block_t *bl) {
block_t
*
pred_bl
=
get_block_entry
(
pred
);
int
need_phi
=
0
;
memop_t
*
first
=
NULL
;
ir_mode
*
mode
;
ir_mode
*
mode
=
NULL
;
for
(
i
=
0
;
i
<
n
;
++
i
)
{
memop_t
*
mop
;
...
...
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