summaryrefslogtreecommitdiff
path: root/test
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
commitdf1cd1fd1d235cb484f7653f2e24e7b59bccb3fb (patch)
tree7e79c7f4123f0e913436a8b942cd69309dd5daba /test
parentc4a8d5b653935f0bb81415b5d7be843aa9b6f0fd (diff)
Fix a bug in lit var def: remove extra space
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@277312 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/profile/lit.cfg4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/profile/lit.cfg b/test/profile/lit.cfg
index 7693bd5c6..b8968c448 100644
--- a/test/profile/lit.cfg
+++ b/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=") )