1def match_unsupported(abi, platform, toolchain, subtest=None):
2    # Clang does LTO via gold plugin, but gold doesn't support MIPS yet.
3    if toolchain == 'clang' and abi.startswith('mips'):
4        return '{} {}'.format(toolchain, abi)
5