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
a57a93ec
Commit
a57a93ec
authored
Oct 03, 2008
by
Matthias Braun
Browse files
mac assembler doesn't know .skip, use .space
[r22437]
parent
e91fed69
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/begnuas.c
View file @
a57a93ec
...
...
@@ -675,7 +675,7 @@ static void dump_string_cst(ir_entity *ent)
remaining_space
=
type_size
-
len
;
assert
(
remaining_space
>=
0
);
if
(
remaining_space
>
0
)
{
be_emit_irprintf
(
"
\t
.s
kip
\t
%d
\n
"
,
remaining_space
);
be_emit_irprintf
(
"
\t
.s
pace
\t
%d
\n
"
,
remaining_space
);
}
}
...
...
@@ -996,7 +996,7 @@ static void dump_initializer(be_gas_decl_env_t *env, ir_entity *entity)
/* a gap */
if
(
space
>
0
)
{
be_emit_irprintf
(
"
\t
.s
kip
\t
%d
\n
"
,
space
);
be_emit_irprintf
(
"
\t
.s
pace
\t
%d
\n
"
,
space
);
be_emit_write_line
();
}
}
...
...
@@ -1109,7 +1109,7 @@ static void dump_compound_init(be_gas_decl_env_t *env, ir_entity *ent)
/* a gap */
if
(
space
>
0
)
{
be_emit_irprintf
(
"
\t
.s
kip
\t
%d
\n
"
,
space
);
be_emit_irprintf
(
"
\t
.s
pace
\t
%d
\n
"
,
space
);
be_emit_write_line
();
}
}
...
...
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