UpdateTestChecks: -march=mips/-march=mipsel is mips triple.

Again, a mixture of march and triple, with majority being march:

llvm/test/CodeGen/Mips$ grep -ri triple | wc -l
818
llvm/test/CodeGen/Mips$ grep -ri march | wc -l
1457

llvm-svn: 361521
This commit is contained in:
Roman Lebedev 2019-05-23 18:08:00 +00:00
parent 4d7054615c
commit d19a36efd1
1 changed files with 1 additions and 0 deletions

View File

@ -219,6 +219,7 @@ def scrub_asm_wasm32(asm, args):
def get_triple_from_march(march):
triples = {
'amdgcn': 'amdgcn',
'mips': 'mips',
'sparc': 'sparc',
}
for prefix, triple in triples.items():