diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2009-10-17 20:09:29 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2009-10-17 20:09:29 +0000 |
commit | 0a22fb66644c3b28836387917e15091573c068b9 (patch) | |
tree | b40991888d39def7f349efbe24ef8fdf41454b73 /lib/CompilerDriver/Main.cpp | |
parent | 5a1a53e4508a479e18fe69798909d3d7fa63ad5e (diff) |
First draft of the OptionPreprocessor.
More to follow...
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84352 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CompilerDriver/Main.cpp')
-rw-r--r-- | lib/CompilerDriver/Main.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CompilerDriver/Main.cpp b/lib/CompilerDriver/Main.cpp index 3e1fc9f124..c581809d04 100644 --- a/lib/CompilerDriver/Main.cpp +++ b/lib/CompilerDriver/Main.cpp @@ -95,8 +95,7 @@ int Main(int argc, char** argv) { (argc, argv, "LLVM Compiler Driver (Work In Progress)", true); PluginLoader Plugins; - Plugins.PopulateLanguageMap(langMap); - Plugins.PopulateCompilationGraph(graph); + Plugins.RunInitialization(langMap, graph); if (CheckGraph) { int ret = graph.Check(); |