diff options
| author | Chris Bieneman <beanz@apple.com> | 2015-12-19 00:56:12 +0000 |
|---|---|---|
| committer | Chris Bieneman <beanz@apple.com> | 2015-12-19 00:56:12 +0000 |
| commit | 22816226852c3f8b43e83ab32caac67f0c57c2a7 (patch) | |
| tree | aa58c9a858328331c6ae060837509f907963de8f | |
| parent | a948007062aefdc5f1c668f854ce12e7d12f493e (diff) | |
| download | bcm5719-llvm-22816226852c3f8b43e83ab32caac67f0c57c2a7.tar.gz bcm5719-llvm-22816226852c3f8b43e83ab32caac67f0c57c2a7.zip | |
[CMake] Fixing a typo in a flag
Turns out cc1's flag has 1 - not 2...
llvm-svn: 256070
| -rw-r--r-- | clang/utils/perf-training/lit.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/utils/perf-training/lit.cfg b/clang/utils/perf-training/lit.cfg index cc14c02826f..af4b43b78b0 100644 --- a/clang/utils/perf-training/lit.cfg +++ b/clang/utils/perf-training/lit.cfg @@ -29,7 +29,7 @@ config.suffixes = ['.c', '.cpp', '.m', '.mm', '.cu', '.ll', '.cl', '.s', '.S', ' use_lit_shell = os.environ.get("LIT_USE_INTERNAL_SHELL") config.test_format = lit.formats.ShTest(use_lit_shell == "0") config.substitutions.append( ('%clang_cpp', ' %s --driver-mode=cpp %s ' % (config.clang, sysroot_flags))) -config.substitutions.append( ('%clang_cc1', ' %s --cc1 %s ' % (config.clang, sysroot_flags))) +config.substitutions.append( ('%clang_cc1', ' %s -cc1 %s ' % (config.clang, sysroot_flags))) config.substitutions.append( ('%clang', ' %s %s ' % (config.clang, sysroot_flags) ) ) config.substitutions.append( ('%test_root', config.test_exec_root ) ) |

