diff options
author | Chris Lattner <sabre@nondot.org> | 2006-09-04 05:59:09 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-09-04 05:59:09 +0000 |
commit | aea932d27fa41bebaa8576b6002637e74054a7c4 (patch) | |
tree | 79307bf652e355249255cdae9ad82c5c2d997f5d /tools/llvmc/llvmc.cpp | |
parent | 54eae9e1ec35db90a6f33dd8053c533861771bb6 (diff) |
Use LINK_COMPONENTS to specify *components* to link against instead of
using USED_LIBS to specify *libraries* to link against.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30090 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvmc/llvmc.cpp')
-rw-r--r-- | tools/llvmc/llvmc.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/llvmc/llvmc.cpp b/tools/llvmc/llvmc.cpp index f2e7c1fb37..3b22149db3 100644 --- a/tools/llvmc/llvmc.cpp +++ b/tools/llvmc/llvmc.cpp @@ -295,7 +295,6 @@ int main(int argc, char **argv) { if (KeepTemps) flags |= CompilerDriver::KEEP_TEMPS_FLAG; if (ShowStats) flags |= CompilerDriver::SHOW_STATS_FLAG; if (TimeActions) flags |= CompilerDriver::TIME_ACTIONS_FLAG; - if (TimePassesIsEnabled) flags |= CompilerDriver::TIME_PASSES_FLAG; if (StripOutput) flags |= CompilerDriver::STRIP_OUTPUT_FLAG; CD->setDriverFlags(flags); |