diff options
| author | Mikhail Glushenkov <foldr@codedgers.com> | 2009-01-16 07:02:28 +0000 |
|---|---|---|
| committer | Mikhail Glushenkov <foldr@codedgers.com> | 2009-01-16 07:02:28 +0000 |
| commit | 6e8d814d36c441818626297342964a51d7281bcc (patch) | |
| tree | d9f0c1adf7af90e647a8f9af0632bb2938ef4f91 /llvm/tools | |
| parent | 15af77f67939d927e3164a39edf2a17a68fad68e (diff) | |
| download | bcm5719-llvm-6e8d814d36c441818626297342964a51d7281bcc.tar.gz bcm5719-llvm-6e8d814d36c441818626297342964a51d7281bcc.zip | |
Registry.h should not depend on CommandLine.h.
Split Support/Registry.h into two files so that we have less to
recompile every time CommandLine.h is changed.
llvm-svn: 62312
Diffstat (limited to 'llvm/tools')
| -rw-r--r-- | llvm/tools/llc/llc.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/tools/llc/llc.cpp b/llvm/tools/llc/llc.cpp index 60adc835141..087a77097be 100644 --- a/llvm/tools/llc/llc.cpp +++ b/llvm/tools/llc/llc.cpp @@ -27,10 +27,11 @@ #include "llvm/PassManager.h" #include "llvm/Pass.h" #include "llvm/Support/CommandLine.h" +#include "llvm/Support/FileUtilities.h" #include "llvm/Support/ManagedStatic.h" #include "llvm/Support/MemoryBuffer.h" #include "llvm/Support/PluginLoader.h" -#include "llvm/Support/FileUtilities.h" +#include "llvm/Support/RegistryParser.h" #include "llvm/Support/raw_ostream.h" #include "llvm/Analysis/Verifier.h" #include "llvm/System/Signals.h" @@ -60,7 +61,7 @@ static cl::opt<std::string> TargetTriple("mtriple", cl::desc("Override target triple for module")); static cl::opt<const TargetMachineRegistry::entry*, false, - TargetMachineRegistry::Parser> + RegistryParser<TargetMachine> > MArch("march", cl::desc("Architecture to generate code for:")); static cl::opt<std::string> |

