diff options
Diffstat (limited to 'include/clang/Lex/ModuleMap.h')
-rw-r--r-- | include/clang/Lex/ModuleMap.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/include/clang/Lex/ModuleMap.h b/include/clang/Lex/ModuleMap.h index 3e794f5c00..6176ed8c30 100644 --- a/include/clang/Lex/ModuleMap.h +++ b/include/clang/Lex/ModuleMap.h @@ -39,7 +39,8 @@ class ModuleMap { SourceManager *SourceMgr; llvm::IntrusiveRefCntPtr<DiagnosticsEngine> Diags; const LangOptions &LangOpts; - + const TargetInfo *Target; + /// \brief Language options used to parse the module map itself. /// /// These are always simple C language options. @@ -89,13 +90,18 @@ public: /// diagnostics. /// /// \param LangOpts Language options for this translation unit. + /// + /// \param Target The target for this translation unit. ModuleMap(FileManager &FileMgr, const DiagnosticConsumer &DC, - const LangOptions &LangOpts); + const LangOptions &LangOpts, const TargetInfo *Target); /// \brief Destroy the module map. /// ~ModuleMap(); - + + /// \brief Set the target information. + void setTarget(const TargetInfo &Target); + /// \brief Retrieve the module that owns the given header file, if any. /// /// \param File The header file that is likely to be included. |