On 2014-03-24 14:38:09 +0200, Martin Storsjö wrote:
> ---
>  gas-preprocessor.pl | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/gas-preprocessor.pl b/gas-preprocessor.pl
> index f013c71..8864cfd 100755
> --- a/gas-preprocessor.pl
> +++ b/gas-preprocessor.pl
> @@ -616,12 +616,12 @@ sub handle_local_label {
>      my $dir  = $_[2];
>      my $target = "$num$dir";
>      if ($dir eq "b") {
> -        $line =~ s/$target/$last_temp_labels{$num}/;
> +        $line =~ s/$target/$last_temp_labels{$num}/g;
>      } else {
>          my $name = "temp_label_$temp_label_next";
>          $temp_label_next++;
>          push(@{$next_temp_labels{$num}}, $name);
> -        $line =~ s/$target/$name/;
> +        $line =~ s/$target/$name/g;
>      }
>      return $line;
>  }

ok

Janne
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to