summaryrefslogtreecommitdiff
path: root/include/clang/Basic/DiagnosticCommonKinds.td
diff options
context:
space:
mode:
authorManuel Klimek <klimek@google.com>2012-05-16 20:55:58 +0000
committerManuel Klimek <klimek@google.com>2012-05-16 20:55:58 +0000
commit832a2aac5766dd78f113e0f03a0c62fd0eacbc97 (patch)
treef78236c436285ef97ba1554709d0258038d4ff40 /include/clang/Basic/DiagnosticCommonKinds.td
parentee9ad5ce4840b3c95024948c89d00945ffdda9bb (diff)
downloadclang-832a2aac5766dd78f113e0f03a0c62fd0eacbc97.tar.gz
clang-832a2aac5766dd78f113e0f03a0c62fd0eacbc97.tar.bz2
clang-832a2aac5766dd78f113e0f03a0c62fd0eacbc97.tar.xz
Pulls diagnostics for temp file handling into the common diagnostic kinds.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@156947 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/DiagnosticCommonKinds.td')
-rw-r--r--include/clang/Basic/DiagnosticCommonKinds.td4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/clang/Basic/DiagnosticCommonKinds.td b/include/clang/Basic/DiagnosticCommonKinds.td
index ef0232e63d..f85928740b 100644
--- a/include/clang/Basic/DiagnosticCommonKinds.td
+++ b/include/clang/Basic/DiagnosticCommonKinds.td
@@ -108,4 +108,8 @@ def err_file_modified : Error<
"file '%0' modified since it was first processed">, DefaultFatal;
def err_unsupported_bom : Error<"%0 byte order mark detected in '%1', but "
"encoding is not supported">, DefaultFatal;
+def err_unable_to_rename_temp : Error<
+ "unable to rename temporary '%0' to output file '%1': '%2'">;
+def err_unable_to_make_temp : Error<
+ "unable to make temporary file: %0">;
}