On 2014-03-24 14:38:00 +0200, Martin Storsjö wrote:
> ---
>  gas-preprocessor.pl | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/gas-preprocessor.pl b/gas-preprocessor.pl
> index 5498b7c..6274571 100755
> --- a/gas-preprocessor.pl
> +++ b/gas-preprocessor.pl
> @@ -914,7 +914,8 @@ foreach my $line (@pass1_lines) {
>      $line =~ s/\.func/$comm$&/x        if $as_type =~ /^(apple-|clang)/;
>      $line =~ s/\.endfunc/$comm$&/x     if $as_type =~ /^(apple-|clang)/;
>      $line =~ s/\.endfunc/ENDP/x        if $as_type =~ /armasm/;
> -    $line =~ s/\.ltorg/$comm$&/x       if $as_type =~ 
> /^(apple-|clang|armasm)/;
> +    $line =~ s/\.ltorg/$comm$&/x       if $as_type =~ /^(apple-|clang)/;
> +    $line =~ s/\.ltorg/LTORG/x         if $as_type =~ /armasm/;

could be if $as_type eq "armasm", ok either way

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

Reply via email to