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
0d65196e
Commit
0d65196e
authored
Mar 22, 2006
by
Michael Beck
Browse files
replaced malloc by xmalloc
parent
4576b868
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/benode.c
View file @
0d65196e
...
...
@@ -5,7 +5,7 @@
*
* Backend node support.
*
* This file prov
d
ies Perm, Copy, Spill and Reload nodes.
* This file provi
d
es Perm, Copy, Spill and Reload nodes.
*
* Copyright (C) 2005 Universitaet Karlsruhe
* Released under the GPL
...
...
@@ -344,7 +344,7 @@ ir_node *be_new_Call(ir_graph *irg, ir_node *bl, ir_node *mem, ir_node *sp, ir_n
ir_node
*
irn
;
ir_node
**
real_in
;
real_in
=
malloc
(
sizeof
(
real_in
[
0
])
*
(
real_n
));
real_in
=
x
malloc
(
sizeof
(
real_in
[
0
])
*
(
real_n
));
real_in
[
0
]
=
mem
;
real_in
[
1
]
=
sp
;
...
...
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