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
f9a6c6a7
Commit
f9a6c6a7
authored
Jul 24, 2008
by
Michael Beck
Browse files
- use is_Confirm() instead of old style compare
[r20643]
parent
82caacf1
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/ana/irconsconfirm.c
View file @
f9a6c6a7
...
...
@@ -459,7 +459,7 @@ void construct_confirms(ir_graph *irg) {
*/
static
void
rem_Confirm
(
ir_node
*
n
,
void
*
env
)
{
(
void
)
env
;
if
(
get_irn_op
(
n
)
==
op
_Confirm
)
{
if
(
is
_Confirm
(
n
)
)
{
ir_node
*
value
=
get_Confirm_value
(
n
);
if
(
value
!=
n
)
exchange
(
n
,
value
);
...
...
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