Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Unified Diff: include/clang/Driver/ToolChain.h

Issue 1547623002: Clang toolchain driver for PNaCl (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-clang.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | lib/Basic/Targets.cpp » ('j') | lib/Driver/ToolChains.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/clang/Driver/ToolChain.h
diff --git a/include/clang/Driver/ToolChain.h b/include/clang/Driver/ToolChain.h
index 560df19e25cea6bce09d5ac9c19cba5e2d3c243a..8df16e1794404d6b1cb969fe406ef8ab40893633 100644
--- a/include/clang/Driver/ToolChain.h
+++ b/include/clang/Driver/ToolChain.h
@@ -345,6 +345,9 @@ public:
virtual bool
AddFastMathRuntimeIfAvailable(const llvm::opt::ArgList &Args,
llvm::opt::ArgStringList &CmdArgs) const;
+
+ /// isVirtualTarget - Whether the toolchain has a coresponding backend target.
+ virtual bool isVirtualTarget() const { return false; }
Derek Schuff 2016/02/02 23:19:11 This should probably have a different name because
Petr Hosek 2016/02/03 22:49:26 Done.
};
} // end namespace driver
« no previous file with comments | « no previous file | lib/Basic/Targets.cpp » ('j') | lib/Driver/ToolChains.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698