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
8cc9eddf
Commit
8cc9eddf
authored
Jul 31, 2009
by
Matthias Braun
Browse files
fix warning
[r26301]
parent
cbede319
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/ir/irprog.c
View file @
8cc9eddf
...
...
@@ -333,7 +333,7 @@ void add_irp_opcode(ir_op *opcode) {
/* Removes opcode from the list of opcodes and shrinks the list by one. */
void
remove_irp_opcode
(
ir_op
*
opcode
)
{
assert
(
opcode
->
code
<
ARR_LEN
(
irp
->
opcodes
));
assert
(
(
int
)
opcode
->
code
<
ARR_LEN
(
irp
->
opcodes
));
irp
->
opcodes
[
opcode
->
code
]
=
NULL
;
}
...
...
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