diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-11-18 10:11:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-18 10:11:49 +0100 |
commit | 84761ca106df2ae9d06116cc5237524438ebad76 (patch) | |
tree | 16402c6d5edd0f5fc754d49d5b7aff573fbd69de /thirdparty/opus/celt/arm/arm2gnu.pl | |
parent | 5c13db0150168c14d81bd320540d2d541be72dcb (diff) | |
parent | 46ae64cd60166ead412bacc1bf03e9c8f8965e2c (diff) |
Merge pull request #33698 from akien-mga/revert-opus-1.3.1-pr33311
Revert "Update opus to 1.3.1 and opusfile to 0.11"
Diffstat (limited to 'thirdparty/opus/celt/arm/arm2gnu.pl')
-rwxr-xr-x | thirdparty/opus/celt/arm/arm2gnu.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/thirdparty/opus/celt/arm/arm2gnu.pl b/thirdparty/opus/celt/arm/arm2gnu.pl index a2895f7445..6c922ac819 100755 --- a/thirdparty/opus/celt/arm/arm2gnu.pl +++ b/thirdparty/opus/celt/arm/arm2gnu.pl @@ -164,11 +164,11 @@ while (<>) { $prefix = ""; if ($proc) { - $prefix = $prefix.sprintf("\t.type\t%s, %%function", $proc) unless ($apple); + $prefix = $prefix.sprintf("\t.type\t%s, %%function; ",$proc) unless ($apple); # Make sure we $prefix isn't empty here (for the $apple case). # We handle mangling the label here, make sure it doesn't match # the label handling below (if $prefix would be empty). - $prefix = $prefix."; "; + $prefix = "; "; push(@proc_stack, $proc); s/^[A-Za-z_\.]\w+/$symprefix$&:/; } |