Index: llvm/utils/lit/lit/llvm/config.py =================================================================== --- llvm/utils/lit/lit/llvm/config.py +++ llvm/utils/lit/lit/llvm/config.py @@ -96,6 +96,9 @@ features.add('x86_64-linux') if re.match(r'.*-windows-msvc$', target_triple): features.add('target-windows') + # target is using x86 family processor (32- or 64-bit) + if re.match(r'^x86.*', target_triple): + features.add('target-x86') use_gmalloc = lit_config.params.get('use_gmalloc', None) if lit.util.pythonize_bool(use_gmalloc):