summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXinliang David Li <davidxl@google.com>2016-08-01 01:54:40 +0000
committerXinliang David Li <davidxl@google.com>2016-08-01 01:54:40 +0000
commit52626f132ce456fb6cafefc44cd7c66c01e0bd70 (patch)
treeba679f8b3c5e8b44c4ee45350d7c6b4af872f8c5
parent8ae4354df6596fc547360837fa7efdd7585a004f (diff)
downloadbcm5719-llvm-52626f132ce456fb6cafefc44cd7c66c01e0bd70.tar.gz
bcm5719-llvm-52626f132ce456fb6cafefc44cd7c66c01e0bd70.zip
Fix a bug in lit var def: remove extra space
llvm-svn: 277312
-rw-r--r--compiler-rt/test/profile/lit.cfg4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/test/profile/lit.cfg b/compiler-rt/test/profile/lit.cfg
index 7693bd5c6fc..b8968c448a6 100644
--- a/compiler-rt/test/profile/lit.cfg
+++ b/compiler-rt/test/profile/lit.cfg
@@ -61,9 +61,9 @@ config.substitutions.append( ("%clang_pgogen ", build_invocation(clang_cflags) +
config.substitutions.append( ("%clang_pgogen=", build_invocation(clang_cflags) + " -fprofile-generate=") )
config.substitutions.append( ("%clangxx_profgen ", build_invocation(clang_cxxflags) + " -fprofile-instr-generate ") )
-config.substitutions.append( ("%clangxx_profgen= ", build_invocation(clang_cxxflags) + " -fprofile-instr-generate=") )
+config.substitutions.append( ("%clangxx_profgen=", build_invocation(clang_cxxflags) + " -fprofile-instr-generate=") )
config.substitutions.append( ("%clangxx_pgogen ", build_invocation(clang_cxxflags) + " -fprofile-generate ") )
-config.substitutions.append( ("%clangxx_pgogen= ", build_invocation(clang_cxxflags) + " -fprofile-generate=") )
+config.substitutions.append( ("%clangxx_pgogen=", build_invocation(clang_cxxflags) + " -fprofile-generate=") )
config.substitutions.append( ("%clang_profgen_gcc=", build_invocation(clang_cflags) + " -fprofile-generate=") )
config.substitutions.append( ("%clang_profuse_gcc=", build_invocation(clang_cflags) + " -fprofile-use=") )
OpenPOWER on IntegriCloud