summaryrefslogtreecommitdiff
path: root/build/make/ads2gas.pl
diff options
context:
space:
mode:
authorMartin Storsjo <martin@martin.st>2018-07-28 08:02:27 +0300
committerMartin Storsjo <martin@martin.st>2018-07-28 11:56:49 +0300
commit510ae7b5a5560d4aed2872743bfc54c9190c5c3a (patch)
tree593f937ebce6a4cfa86a86d43da8a346003ece1b /build/make/ads2gas.pl
parent2d79df49408873dd62a1b26cf8ed0e067c26dc6d (diff)
downloadlibvpx-510ae7b5a5560d4aed2872743bfc54c9190c5c3a.tar
libvpx-510ae7b5a5560d4aed2872743bfc54c9190c5c3a.tar.gz
libvpx-510ae7b5a5560d4aed2872743bfc54c9190c5c3a.tar.bz2
libvpx-510ae7b5a5560d4aed2872743bfc54c9190c5c3a.zip
arm: Consistently use unified syntax for asm
The ".syntax unified" directives in a few source files aren't valid ADS assembly directives, and they break compilation for windows, since ads2armasm_ms.pl doesn't handle them. Explicity add them via ads2gas.pl and ads2gas_apple.pl instead, and tweak one instruction to be valid unified syntax. Change-Id: I37f1709f163d11474597161fe02eb433859cb9b8
Diffstat (limited to 'build/make/ads2gas.pl')
-rwxr-xr-xbuild/make/ads2gas.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/make/ads2gas.pl b/build/make/ads2gas.pl
index 91609da73..0bf4816cc 100755
--- a/build/make/ads2gas.pl
+++ b/build/make/ads2gas.pl
@@ -33,8 +33,8 @@ foreach my $arg (@ARGV) {
print "@ This file was created from a .asm file\n";
print "@ using the ads2gas.pl script.\n";
print "\t.equ DO1STROUNDING, 0\n";
+print "\t.syntax unified\n";
if ($thumb) {
- print "\t.syntax unified\n";
print "\t.thumb\n";
}