diff options
Diffstat (limited to 'tools/llvmc2/llvmc.cpp')
-rw-r--r-- | tools/llvmc2/llvmc.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/llvmc2/llvmc.cpp b/tools/llvmc2/llvmc.cpp index 592a1333f3..f3a1e57192 100644 --- a/tools/llvmc2/llvmc.cpp +++ b/tools/llvmc2/llvmc.cpp @@ -85,8 +85,9 @@ int main(int argc, char** argv) { cl::ParseCommandLineOptions (argc, argv, "LLVM Compiler Driver (Work In Progress)", true); - PopulateLanguageMap(langMap); - PopulateCompilationGraph(graph); + PluginLoader Plugins; + Plugins.PopulateLanguageMap(langMap); + Plugins.PopulateCompilationGraph(graph); if (WriteGraph) { graph.writeGraph(); |