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
04321ea9
Commit
04321ea9
authored
Apr 15, 2010
by
Matthias Braun
Browse files
gas on cygwin doesn't like section type (althought that's not what the docu says IMO)
[r27408]
parent
001d1f92
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/begnuas.c
View file @
04321ea9
...
...
@@ -169,9 +169,12 @@ static void emit_section(be_gas_section_t section, const ir_entity *entity)
be_emit_char
(
'T'
);
if
(
flags
&
GAS_SECTION_FLAG_COMDAT
)
be_emit_char
(
'G'
);
be_emit_cstring
(
"
\"
,"
);
be_emit_char
(
be_gas_elf_type_char
);
be_emit_string
(
type
[
base
]);
/* section type */
if
(
be_gas_object_file_format
!=
OBJECT_FILE_FORMAT_COFF
)
{
be_emit_cstring
(
"
\"
,"
);
be_emit_char
(
be_gas_elf_type_char
);
be_emit_string
(
type
[
base
]);
}
if
(
flags
&
GAS_SECTION_FLAG_COMDAT
)
{
be_emit_char
(
','
);
...
...
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