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
1ea1e1dc
Commit
1ea1e1dc
authored
Aug 03, 2007
by
Michael Beck
Browse files
dump the result modes of Div,Mod,DivMod
[r15459]
parent
b389fcf5
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/ir/irdump.c
View file @
1ea1e1dc
...
...
@@ -769,6 +769,15 @@ int dump_node_opcode(FILE *F, ir_node *n)
fprintf
(
F
,
"strict"
);
fprintf
(
F
,
"%s"
,
get_irn_opname
(
n
));
break
;
case
iro_Div
:
fprintf
(
F
,
"%s[%s]"
,
get_irn_opname
(
n
),
get_mode_name_ex
(
get_Div_resmode
(
n
),
&
bad
));
break
;
case
iro_Mod
:
fprintf
(
F
,
"%s[%s]"
,
get_irn_opname
(
n
),
get_mode_name_ex
(
get_Mod_resmode
(
n
),
&
bad
));
break
;
case
iro_DivMod
:
fprintf
(
F
,
"%s[%s]"
,
get_irn_opname
(
n
),
get_mode_name_ex
(
get_DivMod_resmode
(
n
),
&
bad
));
break
;
default:
default_case:
...
...
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