Added LLVM copyright header (for lack of a better term).
[oota-llvm.git] / include / llvm / Support / Linker.h
1 //===- llvm/Transforms/Utils/Linker.h - Module Linker Interface -*- C++ -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the interface to the module linker.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_TRANSFORMATIONS_UTILS_LINKER_H
15 #define LLVM_TRANSFORMATIONS_UTILS_LINKER_H
16
17 #include <string>
18 class Module;
19
20 // LinkModules - This function links two modules together, with the resulting
21 // left module modified to be the composite of the two input modules.  If an
22 // error occurs, true is returned and ErrorMsg (if not null) is set to indicate
23 // the problem.
24 //
25 bool LinkModules(Module *Dest, const Module *Src, std::string *ErrorMsg = 0);
26
27 #endif
28