gas -g doesn't tolerate unpadded .bytes in code segment.

This commit is contained in:
Andy Polyakov 2007-07-13 21:35:56 +00:00
parent 96b0f6c16d
commit 287a9ee76e

View file

@ -66,7 +66,7 @@ my $asciz = sub {
shift;
my $line = join(",",@_);
if ($line =~ /^"(.*)"$/)
{ ".byte " . join(",",unpack("C*",$1),0); }
{ ".byte " . join(",",unpack("C*",$1),0) . "\n.align 2"; }
else
{ ""; }
};