forked from OSchip/llvm-project
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:
parent
4d7054615c
commit
d19a36efd1
|
@ -219,6 +219,7 @@ def scrub_asm_wasm32(asm, args):
|
||||||
def get_triple_from_march(march):
|
def get_triple_from_march(march):
|
||||||
triples = {
|
triples = {
|
||||||
'amdgcn': 'amdgcn',
|
'amdgcn': 'amdgcn',
|
||||||
|
'mips': 'mips',
|
||||||
'sparc': 'sparc',
|
'sparc': 'sparc',
|
||||||
}
|
}
|
||||||
for prefix, triple in triples.items():
|
for prefix, triple in triples.items():
|
||||||
|
|
Loading…
Reference in New Issue