Changes to build successfully with GCC 3.02
[oota-llvm.git] / include / llvm / Transforms / Utils / Linker.h
1 //===- llvm/Transforms/Linker.h - Module Linker Interface --------*- C++ -*--=//
2 //
3 // This file defines the interface to the module linker.
4 //
5 //===----------------------------------------------------------------------===//
6
7 #ifndef LLVM_TRANSFORMATIONS_LINKER_H
8 #define LLVM_TRANSFORMATIONS_LINKER_H
9
10 #include <string>
11 class Module;
12
13
14 // LinkModules - This function links two modules together, with the resulting
15 // left module modified to be the composite of the two input modules.  If an
16 // error occurs, true is returned and ErrorMsg (if not null) is set to indicate
17 // the problem.
18 //
19 bool LinkModules(Module *Dest, const Module *Src, std::string *ErrorMsg = 0);
20
21 #endif
22