*** empty log message ***
authorChris Lattner <sabre@nondot.org>
Thu, 25 Jul 2002 16:31:09 +0000 (16:31 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 25 Jul 2002 16:31:09 +0000 (16:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3087 91177308-0d34-0410-b5e6-96231b3b80d8

tools/dis/dis.cpp
tools/extract/extract.cpp
tools/gccas/gccas.cpp
tools/gccld/gccld.cpp
tools/llvm-dis/dis.cpp
tools/llvm-dis/llvm-dis.cpp
tools/llvm-extract/llvm-extract.cpp
tools/opt/opt.cpp

index 361564c8e54e9674bf8b2e21892df1ea10dfe21b..13c4da3942eddb942af061fa39e0b57e5ead72d4 100644 (file)
@@ -27,10 +27,10 @@ enum OutputMode {
   c,                  // Generate C code
 };
 
-static cl::opt<string>
+static cl::opt<std::string>
 InputFilename(cl::Positional, cl::desc("<input bytecode>"), cl::init("-"));
 
-static cl::opt<string>
+static cl::opt<std::string>
 OutputFilename("o", cl::desc("Override output filename"),
                cl::value_desc("filename"));
 
index 5c71264d54c64505e614b67eb4fcbd97bb91a9fc..93e5fc1b112870b81b203d1bff5b8ff301b9450b 100644 (file)
 #include <memory>
 
 // InputFilename - The filename to read from.
-static cl::opt<string>
+static cl::opt<std::string>
 InputFilename(cl::Positional, cl::desc("<input bytecode file>"),
               cl::init("-"), cl::value_desc("filename"));
               
 
 // ExtractFunc - The function to extract from the module... defaults to main.
-static cl::opt<string>
+static cl::opt<std::string>
 ExtractFunc("func", cl::desc("Specify function to extract"), cl::init("main"),
             cl::value_desc("function"));
 
index c59b6ebe6a421f06d7cde86377a96bb637b859a2..974e9e26f4b5375ff4ce59a5ece21b4c90e551c8 100644 (file)
@@ -25,10 +25,10 @@ using std::cerr;
 // FIXME: This should eventually be parameterized...
 static TargetData TD("opt target");
 
-static cl::opt<string>
+static cl::opt<std::string>
 InputFilename(cl::Positional, cl::desc("<input llvm assembly>"), cl::Required);
 
-static cl::opt<string> 
+static cl::opt<std::string> 
 OutputFilename("o", cl::desc("Override output filename"),
                cl::value_desc("filename"));
 
index 70e0130da083e71162206e8401e63155dfc8c259..5649796aaeac745273a97642102acdcdfd5b9099 100644 (file)
 #include <sys/stat.h>
 using std::cerr;
 
-static cl::list<string> 
+static cl::list<std::string> 
 InputFilenames(cl::Positional, cl::desc("<input bytecode files>"),
                cl::OneOrMore);
 
-static cl::opt<string> 
+static cl::opt<std::string> 
 OutputFilename("o", cl::desc("Override output filename"), cl::init("a.out"),
                cl::value_desc("filename"));
 
 static cl::opt<bool>    
 Verbose("v", cl::desc("Print information about actions taken"));
 
-static cl::list<string> 
+static cl::list<std::string> 
 LibPaths("L", cl::desc("Specify a library search path"), cl::Prefix,
          cl::value_desc("directory"));
 
-static cl::list<string> 
+static cl::list<std::string> 
 Libraries("l", cl::desc("Specify libraries to link to"), cl::Prefix,
           cl::value_desc("library prefix"));
 
index 361564c8e54e9674bf8b2e21892df1ea10dfe21b..13c4da3942eddb942af061fa39e0b57e5ead72d4 100644 (file)
@@ -27,10 +27,10 @@ enum OutputMode {
   c,                  // Generate C code
 };
 
-static cl::opt<string>
+static cl::opt<std::string>
 InputFilename(cl::Positional, cl::desc("<input bytecode>"), cl::init("-"));
 
-static cl::opt<string>
+static cl::opt<std::string>
 OutputFilename("o", cl::desc("Override output filename"),
                cl::value_desc("filename"));
 
index 361564c8e54e9674bf8b2e21892df1ea10dfe21b..13c4da3942eddb942af061fa39e0b57e5ead72d4 100644 (file)
@@ -27,10 +27,10 @@ enum OutputMode {
   c,                  // Generate C code
 };
 
-static cl::opt<string>
+static cl::opt<std::string>
 InputFilename(cl::Positional, cl::desc("<input bytecode>"), cl::init("-"));
 
-static cl::opt<string>
+static cl::opt<std::string>
 OutputFilename("o", cl::desc("Override output filename"),
                cl::value_desc("filename"));
 
index 5c71264d54c64505e614b67eb4fcbd97bb91a9fc..93e5fc1b112870b81b203d1bff5b8ff301b9450b 100644 (file)
 #include <memory>
 
 // InputFilename - The filename to read from.
-static cl::opt<string>
+static cl::opt<std::string>
 InputFilename(cl::Positional, cl::desc("<input bytecode file>"),
               cl::init("-"), cl::value_desc("filename"));
               
 
 // ExtractFunc - The function to extract from the module... defaults to main.
-static cl::opt<string>
+static cl::opt<std::string>
 ExtractFunc("func", cl::desc("Specify function to extract"), cl::init("main"),
             cl::value_desc("function"));
 
index 01be7eb96d4f0fe2fb2ea67af2910fa6b5c2e69b..9fbfea7564893638c3dd48e812cbad865d0b5f6e 100644 (file)
@@ -20,7 +20,7 @@
 #include <algorithm>
 
 using std::cerr;
-
+using std::string;
 
 //===----------------------------------------------------------------------===//
 // PassNameParser class - Make use of the pass registration mechanism to