projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4d70546
)
UpdateTestChecks: -march=mips/-march=mipsel is mips triple.
author
Roman Lebedev
<lebedev.ri@gmail.com>
Thu, 23 May 2019 18:08:00 +0000
(18:08 +0000)
committer
Roman Lebedev
<lebedev.ri@gmail.com>
Thu, 23 May 2019 18:08:00 +0000
(18:08 +0000)
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
llvm/utils/UpdateTestChecks/asm.py
patch
|
blob
|
history
diff --git
a/llvm/utils/UpdateTestChecks/asm.py
b/llvm/utils/UpdateTestChecks/asm.py
index
ccc68d0
..
459aa42
100644
(file)
--- 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():