summaryrefslogtreecommitdiffstats
path: root/clang/include
diff options
context:
space:
mode:
Diffstat (limited to 'clang/include')
-rw-r--r--clang/include/clang/Driver/Action.h2
-rw-r--r--clang/include/clang/Driver/Driver.h7
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.
///
OpenPOWER on IntegriCloud