Make the indirect branch optimization deterministic. No functionality change.
[oota-llvm.git] / test / lit.site.cfg.in
1 ## Autogenerated by LLVM/Clang configuration.
2 # Do not edit!
3 config.target_triple = "@TARGET_TRIPLE@"
4 config.llvm_src_root = "@LLVM_SOURCE_DIR@"
5 config.llvm_obj_root = "@LLVM_BINARY_DIR@"
6 config.llvm_tools_dir = "@LLVM_TOOLS_DIR@"
7 config.llvm_shlib_dir = "@SHLIBDIR@"
8 config.llvm_shlib_ext = "@SHLIBEXT@"
9 config.lit_tools_dir = "@LLVM_LIT_TOOLS_DIR@"
10 config.python_executable = "@PYTHON_EXECUTABLE@"
11 config.ocamlopt_executable = "@OCAMLOPT@"
12 config.enable_shared = @ENABLE_SHARED@
13 config.enable_assertions = @ENABLE_ASSERTIONS@
14 config.lto_is_enabled = "@LTO_IS_ENABLED@"
15 config.targets_to_build = "@TARGETS_TO_BUILD@"
16 config.llvm_bindings = "@LLVM_BINDINGS@"
17 config.host_os = "@HOST_OS@"
18 config.host_arch = "@HOST_ARCH@"
19
20 # Support substitution of the tools_dir with user parameters. This is
21 # used when we can't determine the tool dir at configuration time.
22 try:
23     config.llvm_tools_dir = config.llvm_tools_dir % lit.params
24 except KeyError,e:
25     key, = e.args
26     lit.fatal("unable to find %r parameter, use '--param=%s=VALUE'" % (key,key))
27
28 # Let the main config do the real work.
29 lit.load_config(config, "@LLVM_SOURCE_DIR@/test/lit.cfg")