Replace the ugly FindValue method with STL-like find methods.
[oota-llvm.git] / include / llvm / LinkTimeOptimizer.h
index 50c1613eb004547935d40dc2a528990ce77e2cde..164232d20989b0559e5482a9f8a9178bdd527e1e 100644 (file)
@@ -96,6 +96,7 @@ namespace llvm {
                                            const char *) = 0;
     virtual void getTargetTriple(const std::string &, std::string &) = 0;
     virtual void removeModule (const std::string &InputFilename) = 0;
+    virtual void printVersion () = 0;
     virtual ~LinkTimeOptimizer() = 0;
   };
 
@@ -119,6 +120,7 @@ namespace llvm {
     void getTargetTriple(const std::string &InputFilename, 
                          std::string &targetTriple);
     void removeModule (const std::string &InputFilename);
+    void printVersion();
 
     // Constructors and destructors
     LTO() {