diff gen/linker.h @ 244:a95056b3c996 trunk

[svn r261] Fixed debug info for integer and floating local variables, can now be inspected in GDB. Did a lot of smaller cleans up here and there. Replaced more llvm::Foo with LLFoo for common stuff. Split up tollvm.cpp.
author lindquist
date Mon, 09 Jun 2008 09:37:08 +0200
parents
children 21f85bac0b1a
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gen/linker.h	Mon Jun 09 09:37:08 2008 +0200
@@ -0,0 +1,11 @@
+#ifndef LLVMDC_GEN_LINKER_H
+#define LLVMDC_GEN_LINKER_H
+
+/**
+ * Links the modules given in MV in to dst.
+ * @param dst Destination module.
+ * @param MV Vector of modules to link in to destination.
+ */
+void linkModules(llvm::Module* dst, const std::vector<llvm::Module*>& MV);
+
+#endif // LLVMDC_GEN_LINKER_H