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
d0d5cc04
Commit
d0d5cc04
authored
May 05, 2010
by
Matthias Braun
Browse files
also allow reference mode in fild
[r27491]
parent
25bffc94
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/ia32/ia32_emitter.c
View file @
d0d5cc04
...
...
@@ -70,6 +70,7 @@
#include "../be_dbgout.h"
#include "ia32_emitter.h"
#include "ia32_common_transform.h"
#include "gen_ia32_emitter.h"
#include "gen_ia32_regalloc_if.h"
#include "ia32_nodes_attr.h"
...
...
@@ -429,7 +430,7 @@ void ia32_emit_x87_mode_suffix(const ir_node *node)
case
128
:
be_emit_char
(
't'
);
return
;
}
}
else
{
assert
(
mode_is_int
(
mode
));
assert
(
mode_is_int
(
mode
)
||
mode_is_reference
(
mode
)
);
switch
(
get_mode_size_bits
(
mode
))
{
case
16
:
be_emit_char
(
's'
);
return
;
case
32
:
be_emit_char
(
'l'
);
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