Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Unified Diff: third_party/opus/src/celt/arm/arm2gnu.pl

Issue 2962373002: [Opus] Update to v1.2.1 (Closed)
Patch Set: Pre-increment instead of post-increment Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/opus/src/celt/arch.h ('k') | third_party/opus/src/celt/arm/arm_celt_map.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/opus/src/celt/arm/arm2gnu.pl
diff --git a/third_party/opus/src/celt/arm/arm2gnu.pl b/third_party/opus/src/celt/arm/arm2gnu.pl
index 6c922ac819d7e0889bdbb72c4e8bec9cf6be5d4b..a2895f7445e89433669152e3c489116d0860a7b9 100755
--- a/third_party/opus/src/celt/arm/arm2gnu.pl
+++ b/third_party/opus/src/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$&:/;
}
« no previous file with comments | « third_party/opus/src/celt/arch.h ('k') | third_party/opus/src/celt/arm/arm_celt_map.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698