summaryrefslogtreecommitdiff
path: root/include/clang/Basic/DiagnosticFrontendKinds.td
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2011-11-16 17:04:00 +0000
committerDouglas Gregor <dgregor@apple.com>2011-11-16 17:04:00 +0000
commit261e75bd10198c336aded42f0398a13f7bf88889 (patch)
tree9829080d3d5fb7745963899c8536c8b406f2f1da /include/clang/Basic/DiagnosticFrontendKinds.td
parent30bb420cfe1801742a2ecb242c3b0167d81752d0 (diff)
downloadclang-261e75bd10198c336aded42f0398a13f7bf88889.tar.gz
clang-261e75bd10198c336aded42f0398a13f7bf88889.tar.bz2
clang-261e75bd10198c336aded42f0398a13f7bf88889.tar.xz
When building a module from a module map that isn't simply an umbrella
header, create our own in-memory buffer to parse all of the appropriate headers, and use that to build the module. This isn't end-to-end testable yet; that's coming next. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@144797 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 167d070f54..f48e9e3809 100644
--- a/include/clang/Basic/DiagnosticFrontendKinds.td
+++ b/include/clang/Basic/DiagnosticFrontendKinds.td
@@ -178,4 +178,6 @@ def err_missing_module_name : Error<
DefaultFatal;
def err_missing_module : Error<
"no module named '%0' declared in module map file '%1'">, DefaultFatal;
+def err_missing_umbrella_header : Error<
+ "cannot open umbrella header '%0': %1">, DefaultFatal;
}