From abb8febb7239ddf3585a69b8efa2fdb802e4f78e Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Thu, 30 Aug 2018 22:12:16 +0000 Subject: [PATCH] Remove LIT_SITE_CFG_IN_FOOTER, lld It's always replaced with the same (short) static string, so just put that there directly. No intended behavior change. https://reviews.llvm.org/D51357 llvm-svn: 341134 --- lld/test/lit.site.cfg.py.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lld/test/lit.site.cfg.py.in b/lld/test/lit.site.cfg.py.in index 764ab83..c5fc695 100644 --- a/lld/test/lit.site.cfg.py.in +++ b/lld/test/lit.site.cfg.py.in @@ -25,7 +25,8 @@ except KeyError as e: key, = e.args lit_config.fatal("unable to find %r parameter, use '--param=%s=VALUE'" % (key,key)) -@LIT_SITE_CFG_IN_FOOTER@ +import lit +lit.llvm.initialize(lit_config, config) # Let the main config do the real work. lit_config.load_config(config, "@LLD_SOURCE_DIR@/test/lit.cfg.py") -- 2.7.4