summaryrefslogtreecommitdiff
path: root/include/clang/Basic/DiagnosticFrontendKinds.td
diff options
context:
space:
mode:
authorPeter Collingbourne <peter@pcc.me.uk>2011-10-30 17:30:44 +0000
committerPeter Collingbourne <peter@pcc.me.uk>2011-10-30 17:30:44 +0000
commit22a7dfea585703d6755db69b83e29a0e6ee10369 (patch)
treecfb53988caccc1f9a94f66ec59c8da2c0f2f0cb1 /include/clang/Basic/DiagnosticFrontendKinds.td
parent80b32b8c6546a12cf0d4af9c2cd785ec1f123188 (diff)
downloadclang-22a7dfea585703d6755db69b83e29a0e6ee10369.tar.gz
clang-22a7dfea585703d6755db69b83e29a0e6ee10369.tar.bz2
clang-22a7dfea585703d6755db69b83e29a0e6ee10369.tar.xz
Add support for lazily linking bitcode files (using a new
-mlink-bitcode-file flag), and more generally llvm::Modules, before running optimisations. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@143314 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/DiagnosticFrontendKinds.td')
-rw-r--r--include/clang/Basic/DiagnosticFrontendKinds.td2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/clang/Basic/DiagnosticFrontendKinds.td b/include/clang/Basic/DiagnosticFrontendKinds.td
index 82f91961e7..c9f5a5c486 100644
--- a/include/clang/Basic/DiagnosticFrontendKinds.td
+++ b/include/clang/Basic/DiagnosticFrontendKinds.td
@@ -19,6 +19,8 @@ def err_fe_invalid_ast_action : Error<"invalid action for AST input">,
// Error generated by the backend.
def err_fe_inline_asm : Error<"%0">, CatInlineAsm;
def note_fe_inline_asm_here : Note<"instantiated into assembly here">;
+def err_fe_cannot_link_module : Error<"cannot link module '%0': %1">,
+ DefaultFatal;