x86_64-xlate.pl: minor update.

(cherry picked from commit 41965a84c4)
This commit is contained in:
Andy Polyakov
2013-12-09 21:23:19 +01:00
parent 86b81ecb73
commit 3dcae82fa9

View File

@@ -834,6 +834,7 @@ while($line=<>) {
$line =~ s|[#!].*$||; # get rid of asm-style comments... $line =~ s|[#!].*$||; # get rid of asm-style comments...
$line =~ s|/\*.*\*/||; # ... and C-style comments... $line =~ s|/\*.*\*/||; # ... and C-style comments...
$line =~ s|^\s+||; # ... and skip white spaces in beginning $line =~ s|^\s+||; # ... and skip white spaces in beginning
$line =~ s|\s+$||; # ... and at the end
undef $label; undef $label;
undef $opcode; undef $opcode;