my $flavour = $output;
my %GLOBALS;
-my $dotinlocallabels=0;
+my $dotinlocallabels=($flavour=~/linux/)?1:0;
################################################################
# directives which need special treatment on different platforms
};
/linux.*32/ && do { $ret .= ".globl $name\n";
$ret .= ".type $name,\@function";
- $dotinlocallabels = 1;
last;
};
/linux.*64/ && do { $ret .= ".globl .$name\n";
$ret .= ".previous\n";
$name = ".$name";
- $dotinlocallabels = 1;
last;
};
}