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

Unified Diff: libvpx/source/libvpx/build/make/ads2gas_apple.pl

Issue 7624054: Revert r97185 "Update libvpx snapshot to v0.9.7-p1 (Cayuga)." (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party
Patch Set: Created 9 years, 4 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 | « libvpx/source/libvpx/build/make/ads2gas.pl ('k') | libvpx/source/libvpx/build/make/configure.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: libvpx/source/libvpx/build/make/ads2gas_apple.pl
diff --git a/libvpx/source/libvpx/build/make/ads2gas_apple.pl b/libvpx/source/libvpx/build/make/ads2gas_apple.pl
index 78f4a97f52d390d515c7495055b43d4c33cce9c4..5014c61fb387d74b2bc320e7456332d866c6bb43 100644
--- a/libvpx/source/libvpx/build/make/ads2gas_apple.pl
+++ b/libvpx/source/libvpx/build/make/ads2gas_apple.pl
@@ -41,9 +41,6 @@ sub trim($)
while (<STDIN>)
{
- # Load and store alignment
- s/@/,:/g;
-
# Comment character
s/;/@/g;
@@ -100,10 +97,7 @@ while (<STDIN>)
s/CODE([0-9][0-9])/.code $1/;
# No AREA required
- # But ALIGNs in AREA must be obeyed
- s/^\s*AREA.*ALIGN=([0-9])$/.text\n.p2align $1/;
- # If no ALIGN, strip the AREA and align to 4 bytes
- s/^\s*AREA.*$/.text\n.p2align 2/;
+ s/^\s*AREA.*$/.text/;
# DCD to .word
# This one is for incoming symbols
@@ -143,8 +137,8 @@ while (<STDIN>)
# put the colon at the end of the line in the macro
s/^([a-zA-Z_0-9\$]+)/$1:/ if !/EQU/;
- # ALIGN directive
- s/ALIGN/.balign/g;
+ # Strip ALIGN
+ s/\sALIGN/@ ALIGN/g;
# Strip ARM
s/\sARM/@ ARM/g;
« no previous file with comments | « libvpx/source/libvpx/build/make/ads2gas.pl ('k') | libvpx/source/libvpx/build/make/configure.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698