diff options
Diffstat (limited to 'include/llvm/Support/Linker.h')
-rw-r--r-- | include/llvm/Support/Linker.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/llvm/Support/Linker.h b/include/llvm/Support/Linker.h index ac39903..9f4c8c2 100644 --- a/include/llvm/Support/Linker.h +++ b/include/llvm/Support/Linker.h @@ -15,6 +15,9 @@ #define LLVM_TRANSFORMATIONS_UTILS_LINKER_H #include <string> + +namespace llvm { + class Module; // LinkModules - This function links two modules together, with the resulting @@ -24,5 +27,7 @@ class Module; // bool LinkModules(Module *Dest, const Module *Src, std::string *ErrorMsg = 0); +} // End llvm namespace + #endif |