diff options
author | Roman Lebedev <lebedev.ri@gmail.com> | 2019-05-23 18:08:00 +0000 |
---|---|---|
committer | Roman Lebedev <lebedev.ri@gmail.com> | 2019-05-23 18:08:00 +0000 |
commit | d19a36efd14f1474dd73866cd122e51343d612b3 (patch) | |
tree | 7b541092dae26e20eb5eb4445eb10a6e9fb61722 /llvm/utils/UpdateTestChecks/asm.py | |
parent | 4d7054615cc3cfe3e715111edf8a54b65074fba3 (diff) | |
download | bcm5719-llvm-d19a36efd14f1474dd73866cd122e51343d612b3.tar.gz bcm5719-llvm-d19a36efd14f1474dd73866cd122e51343d612b3.zip |
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
Diffstat (limited to 'llvm/utils/UpdateTestChecks/asm.py')
-rw-r--r-- | llvm/utils/UpdateTestChecks/asm.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/utils/UpdateTestChecks/asm.py b/llvm/utils/UpdateTestChecks/asm.py index ccc68d06f5b..459aa42381a 100644 --- a/llvm/utils/UpdateTestChecks/asm.py +++ b/llvm/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(): |