Delete still more remnants of the now dead HostInfo. The janitoring will

continue until cleanliness improves.

llvm-svn: 148951
This commit is contained in:
Chandler Carruth 2012-01-25 11:03:35 +00:00
parent 2ad5de1f72
commit 2886ba2352
2 changed files with 0 additions and 10 deletions

View File

@ -36,7 +36,6 @@ namespace driver {
class Command;
class Compilation;
class DerivedArgList;
class HostInfo;
class InputArgList;
class InputInfo;
class JobAction;
@ -96,10 +95,6 @@ public:
/// Driver title to use with help.
std::string DriverTitle;
/// Host information for the platform the driver is running as. This
/// will generally be the actual host platform, but not always.
const HostInfo *Host;
/// Information about the host which can be overridden by the user.
std::string HostBits, HostMachine, HostSystem, HostRelease;
@ -387,10 +382,6 @@ public:
/// GCC goes to extra lengths here to be a bit more robust.
std::string GetTemporaryPath(StringRef Prefix, const char *Suffix) const;
/// GetHostInfo - Construct a new host info object for the given
/// host triple.
const HostInfo *GetHostInfo(const llvm::Triple &Triple) const;
/// ShouldUseClangCompilar - Should the clang compiler be used to
/// handle this action.
bool ShouldUseClangCompiler(const Compilation &C, const JobAction &JA,

View File

@ -56,7 +56,6 @@ Driver::Driver(StringRef ClangExecutable,
DefaultTargetTriple(DefaultTargetTriple),
DefaultImageName(DefaultImageName),
DriverTitle("clang \"gcc-compatible\" driver"),
Host(0),
CCPrintOptionsFilename(0), CCPrintHeadersFilename(0),
CCLogDiagnosticsFilename(0), CCCIsCXX(false),
CCCIsCPP(false),CCCEcho(false), CCCPrintBindings(false),