Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
f6ac0d25
Commit
f6ac0d25
authored
May 18, 2016
by
yb9976
Browse files
Remove pointless assertion: We would panic otherwise
parent
30e30489
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/opt/proc_cloning.c
View file @
f6ac0d25
...
...
@@ -326,7 +326,6 @@ static ir_node *get_irg_arg(ir_graph *irg, size_t pos)
ir_node
*
irg_args
=
get_irg_args
(
irg
);
foreach_irn_out_r
(
irg_args
,
i
,
proj
)
{
if
(
pos
==
get_Proj_num
(
proj
))
{
assert
(
arg
==
NULL
);
if
(
arg
!=
NULL
)
panic
(
"multiple projs for the same argument"
);
arg
=
proj
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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