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
ab604dc5
Commit
ab604dc5
authored
Oct 24, 2007
by
Christoph Mallon
Browse files
Emit the "t" suffix for f96 numbers in the ia32 backend.
[r16334]
parent
cdaf6d6a
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/ia32/ia32_emitter.c
View file @
ab604dc5
...
...
@@ -257,7 +257,8 @@ static void ia32_emit_mode_suffix_mode(const ir_mode *mode)
switch
(
get_mode_size_bits
(
mode
))
{
case
32
:
be_emit_char
(
's'
);
return
;
case
64
:
be_emit_char
(
'l'
);
return
;
case
80
:
be_emit_char
(
't'
);
return
;
case
80
:
case
96
:
be_emit_char
(
't'
);
return
;
}
}
else
{
assert
(
mode_is_int
(
mode
)
||
mode_is_reference
(
mode
));
...
...
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