Ignore armasm warnings about instructions that are deprecated in ARMv8
This disables armasm warning A4509, "This form of conditional instruction is deprecated". The conditional instructions (such as movcs, addcs, subscs) have been deprecated in ARMv8, in favor of conditional branches. This isn't something that we need to take immediate action about, though, therefore silence the warning.
This commit is contained in:
parent
aea1017562
commit
cd55201600
@ -10,7 +10,7 @@ else
|
||||
endif
|
||||
ifeq ($(ASM_ARCH), arm)
|
||||
CCAS = gas-preprocessor.pl -as-type armasm -force-thumb -- armasm
|
||||
CCASFLAGS = -nologo -DHAVE_NEON
|
||||
CCASFLAGS = -nologo -DHAVE_NEON -ignore 4509
|
||||
endif
|
||||
|
||||
CC=cl
|
||||
|
Loading…
x
Reference in New Issue
Block a user