summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2011-05-06 08:54:14 -0700
committerCode Review <code-review@webmproject.org>2011-05-06 08:54:14 -0700
commit52490354f3c1e639e60254d785914236c4f01bc5 (patch)
treeb3ed8d07b9b0dfd226bc13bcabf6462865e01ed4 /build
parenteeb811730362868458410ed96673ee75c2d79220 (diff)
parent33fa7c4ebe34d25b20d82e318b05cec8b0e32c9c (diff)
downloadlibvpx-52490354f3c1e639e60254d785914236c4f01bc5.tar
libvpx-52490354f3c1e639e60254d785914236c4f01bc5.tar.gz
libvpx-52490354f3c1e639e60254d785914236c4f01bc5.tar.bz2
libvpx-52490354f3c1e639e60254d785914236c4f01bc5.zip
Merge "neon fast quantizer updated"
Diffstat (limited to 'build')
-rwxr-xr-xbuild/make/ads2gas.pl7
-rwxr-xr-xbuild/make/ads2gas_apple.pl7
2 files changed, 10 insertions, 4 deletions
diff --git a/build/make/ads2gas.pl b/build/make/ads2gas.pl
index 3dff048b5..efdfce7a1 100755
--- a/build/make/ads2gas.pl
+++ b/build/make/ads2gas.pl
@@ -23,6 +23,9 @@ print "\t.equ DO1STROUNDING, 0\n";
while (<STDIN>)
{
+ # Load and store alignment
+ s/@/,:/g;
+
# Comment character
s/;/@/g;
@@ -114,8 +117,8 @@ while (<STDIN>)
# put the colon at the end of the line in the macro
s/^([a-zA-Z_0-9\$]+)/$1:/ if !/EQU/;
- # Strip ALIGN
- s/\sALIGN/@ ALIGN/g;
+ # ALIGN directive
+ s/ALIGN/.balign/g;
# Strip ARM
s/\sARM/@ ARM/g;
diff --git a/build/make/ads2gas_apple.pl b/build/make/ads2gas_apple.pl
index 5014c61fb..1b3039374 100755
--- a/build/make/ads2gas_apple.pl
+++ b/build/make/ads2gas_apple.pl
@@ -41,6 +41,9 @@ sub trim($)
while (<STDIN>)
{
+ # Load and store alignment
+ s/@/,:/g;
+
# Comment character
s/;/@/g;
@@ -137,8 +140,8 @@ while (<STDIN>)
# put the colon at the end of the line in the macro
s/^([a-zA-Z_0-9\$]+)/$1:/ if !/EQU/;
- # Strip ALIGN
- s/\sALIGN/@ ALIGN/g;
+ # ALIGN directive
+ s/ALIGN/.balign/g;
# Strip ARM
s/\sARM/@ ARM/g;