diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-03-18 03:13:20 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-03-18 03:13:20 +0000 |
commit | eb843bedf9dba7e823987c53e2e31586d3734b8c (patch) | |
tree | 3606236eeb017c39b431276bd5d646bca2ebdf56 /clang/include | |
parent | 896cb661667ba4ef2ac3e6744dfac53c4a80db91 (diff) | |
download | bcm5719-llvm-eb843bedf9dba7e823987c53e2e31586d3734b8c.tar.gz bcm5719-llvm-eb843bedf9dba7e823987c53e2e31586d3734b8c.zip |
Driver: Ditch Driver::DefaultToolChain, this can vary between compilations.
llvm-svn: 67162
Diffstat (limited to 'clang/include')
-rw-r--r-- | clang/include/clang/Driver/Action.h | 2 | ||||
-rw-r--r-- | clang/include/clang/Driver/Driver.h | 7 |
2 files changed, 3 insertions, 6 deletions
diff --git a/clang/include/clang/Driver/Action.h b/clang/include/clang/Driver/Action.h index b65e5af65af..b9bf671db2b 100644 --- a/clang/include/clang/Driver/Action.h +++ b/clang/include/clang/Driver/Action.h @@ -105,6 +105,8 @@ public: }; class BindArchAction : public Action { + /// The architecture to bind, or 0 if the default architecture + /// should be bound. const char *ArchName; public: diff --git a/clang/include/clang/Driver/Driver.h b/clang/include/clang/Driver/Driver.h index aea5d8c9799..8198913bd04 100644 --- a/clang/include/clang/Driver/Driver.h +++ b/clang/include/clang/Driver/Driver.h @@ -64,11 +64,6 @@ public: /// will generally be the actual host platform, but not always. const HostInfo *Host; - /// The default tool chain for this host. - // FIXME: This shouldn't be here; this should be in a - // CompilationInfo structure. - ToolChain *DefaultToolChain; - /// Information about the host which can be overriden by the user. std::string HostBits, HostMachine, HostSystem, HostRelease; @@ -164,7 +159,7 @@ public: void PrintVersion() const; /// PrintActions - Print the list of actions. - void PrintActions(const ArgList &Args, const ActionList &Actions) const; + void PrintActions(const Compilation &C) const; /// GetFilePath - Lookup \arg Name in the list of file search paths. /// |