[Lldb-commits] [PATCH] D16840: [LLDB][MIPS] Generalise MIPS arch names
Zachary Turner via lldb-commits
lldb-commits at lists.llvm.org
Tue Feb 2 22:31:11 PST 2016
zturner added a subscriber: zturner.
zturner added a comment.
Are you sure the triple keyword parameter supports this syntax? It doesn't
appear to be a regex since you're matching "mips*" instead of "mips.*". I
believe the regular string matching algorithm uses the python `in` keyword
(which does a substring check), so just saying `triple = "mips"` should
work I think.
Repository:
rL LLVM
http://reviews.llvm.org/D16840
More information about the lldb-commits
mailing list