summaryrefslogtreecommitdiff
path: root/include/clang/Driver/Tool.h
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2013-02-01 18:30:26 +0000
committerChad Rosier <mcrosier@apple.com>2013-02-01 18:30:26 +0000
commit75dbc717c21a662b7836ed34cc4e7da7b8fa33c0 (patch)
treec2fa369785cde7602a50b011d063af863bb8a0d0 /include/clang/Driver/Tool.h
parenta5236b93ddd9de6a15d4fdab96e262108f63e116 (diff)
downloadclang-75dbc717c21a662b7836ed34cc4e7da7b8fa33c0.tar.gz
[driver] Don't try to generate diagnostic information for dsymutil crashes.
Part of rdar://13134273 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174203 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Driver/Tool.h')
-rw-r--r--include/clang/Driver/Tool.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/clang/Driver/Tool.h b/include/clang/Driver/Tool.h
index c62e7567ea..4c05d0a743 100644
--- a/include/clang/Driver/Tool.h
+++ b/include/clang/Driver/Tool.h
@@ -50,6 +50,7 @@ public:
virtual bool hasIntegratedAssembler() const { return false; }
virtual bool hasIntegratedCPP() const = 0;
virtual bool isLinkJob() const { return false; }
+ virtual bool isDsymutilJob() const { return false; }
/// \brief Does this tool have "good" standardized diagnostics, or should the
/// driver add an additional "command failed" diagnostic on failures.