[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / ExecutionEngine / lit.local.cfg
blob8b7d157a25c51770b235f0ff8336b374749aebc7
1 if config.root.host_arch in ['Sparc', 'PowerPC', 'AArch64', 'ARM64', 'SystemZ']:
2     config.unsupported = True
4 # CMake and autoconf diverge in naming or host_arch
5 if 'powerpc64' in config.root.target_triple:
6     config.unsupported = True
8 if 'aarch64' in config.root.target_triple \
9     or 'arm64' in config.root.target_triple:
10         config.unsupported = True
12 if 'hexagon' in config.root.target_triple:
13     config.unsupported = True
15 if 'sparc' in config.root.target_triple:
16     config.unsupported = True
18 # ExecutionEngine tests are not expected to pass in a cross-compilation setup.
19 if 'native' not in config.available_features:
20     config.unsupported = True