From: Roman Lebedev Date: Thu, 23 May 2019 18:08:00 +0000 (+0000) Subject: UpdateTestChecks: -march=mips/-march=mipsel is mips triple. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0d3ad44af82c84db37f9834638cb236f129fd9ea;p=llvm 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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@361521 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/UpdateTestChecks/asm.py b/utils/UpdateTestChecks/asm.py index ccc68d06f5b..459aa42381a 100644 --- a/utils/UpdateTestChecks/asm.py +++ b/utils/UpdateTestChecks/asm.py @@ -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():