diff options
| author | Xinliang David Li <davidxl@google.com> | 2016-08-01 01:54:40 +0000 |
|---|---|---|
| committer | Xinliang David Li <davidxl@google.com> | 2016-08-01 01:54:40 +0000 |
| commit | 52626f132ce456fb6cafefc44cd7c66c01e0bd70 (patch) | |
| tree | ba679f8b3c5e8b44c4ee45350d7c6b4af872f8c5 | |
| parent | 8ae4354df6596fc547360837fa7efdd7585a004f (diff) | |
| download | bcm5719-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.cfg | 4 |
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=") ) |

