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
0e5175cf
Commit
0e5175cf
authored
Jul 30, 2015
by
Christoph Mallon
Browse files
arm: Print the shift amount in decimal, not hex.
parent
e5ad7ad7
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/arm/arm_emitter.c
View file @
0e5175cf
...
...
@@ -178,7 +178,7 @@ static void arm_emit_shifter_operand(const ir_node *node)
case
ARM_SHF_ROR_IMM
:
{
arm_emit_source_register
(
node
,
attr
->
shifter_op_input
);
char
const
*
const
mod
=
get_shf_mod_name
(
attr
->
shift_modifier
);
be_emit_irprintf
(
", %s #
0x%X
"
,
mod
,
attr
->
shift_immediate
);
be_emit_irprintf
(
", %s #
%u
"
,
mod
,
attr
->
shift_immediate
);
return
;
}
...
...
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