summaryrefslogtreecommitdiff
path: root/thirdparty/opus/celt/arm/arm2gnu.pl
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2019-11-18 10:11:49 +0100
committerGitHub <noreply@github.com>2019-11-18 10:11:49 +0100
commit84761ca106df2ae9d06116cc5237524438ebad76 (patch)
tree16402c6d5edd0f5fc754d49d5b7aff573fbd69de /thirdparty/opus/celt/arm/arm2gnu.pl
parent5c13db0150168c14d81bd320540d2d541be72dcb (diff)
parent46ae64cd60166ead412bacc1bf03e9c8f8965e2c (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-xthirdparty/opus/celt/arm/arm2gnu.pl4
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$&:/;
}