]> granicus.if.org Git - libvpx/commitdiff
vs/armv7: use -oldit armasm flag
authorJames Zern <jzern@google.com>
Fri, 5 Jun 2015 22:21:10 +0000 (15:21 -0700)
committerJames Zern <jzern@google.com>
Fri, 5 Jun 2015 22:21:10 +0000 (15:21 -0700)
this quiets warnings from armv6 code [1].
from msdn [2]:
-oldit
Generate ARMv7-style IT blocks. By default, ARMv8-compatible IT blocks
are generated.

a new configuration would be needed for armv8 in any case as the neon
assembly is being built, so removing this should be harmless

[1] A4509: This form of conditional instruction is deprecated
[2] https://msdn.microsoft.com/en-us/library/hh873189.aspx

Change-Id: I4c3b838b52a87401c6daecd83d22ab148ed7c5d9

build/make/gen_msvs_vcxproj.sh

index 643ebd634be738d352f102093b3babc71a0d6913..b653651030e41f6f48b5c30958aa37f3291b2401 100755 (executable)
@@ -263,8 +263,8 @@ case "$target" in
     ;;
     arm*)
         platforms[0]="ARM"
-        asm_Debug_cmdline="armasm -nologo &quot;%(FullPath)&quot;"
-        asm_Release_cmdline="armasm -nologo &quot;%(FullPath)&quot;"
+        asm_Debug_cmdline="armasm -nologo -oldit &quot;%(FullPath)&quot;"
+        asm_Release_cmdline="armasm -nologo -oldit &quot;%(FullPath)&quot;"
     ;;
     *) die "Unsupported target $target!"
     ;;