llvm-6502/tools
Jim Grosbach 4f9f41f2f9 Load multiple object files and link them via RuntimeDyld in llvm-rtdyld.
Relocations between the object modules are properly resolved, as in the
following trivial example:

$ cat t.c
int foo();
int main() {
    return foo();
}
$ cat foo.c
int foo() {
    return 65;
}
$ clang -c t.c -fno-asynchronous-unwind-tables
$ clang -c foo.c -fno-asynchronous-unwind-tables
$ llvm-rtdyld t.o foo.o ; echo $?
loaded '_main' at: 0x10015c000
65



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129448 91177308-0d34-0410-b5e6-96231b3b80d8
2011-04-13 15:49:40 +00:00
..
bugpoint
bugpoint-passes
edis
gold If present, use gold's support for getting a file view. This prevents having 2011-04-07 21:11:00 +00:00
llc Added *hidden* flags -print-options and -print-all-options so 2011-04-05 18:54:36 +00:00
lli
llvm-ar
llvm-as
llvm-bcanalyzer
llvm-config Rename LLVMConfig.cmake to LLVM-Config.cmake. The *Config.cmake naming 2011-04-05 17:02:48 +00:00
llvm-diff Don't include Operator.h from InstrTypes.h. 2011-04-11 09:35:34 +00:00
llvm-dis
llvm-extract
llvm-ld
llvm-link
llvm-mc Moved an access to an object past a NULL check, 2011-04-09 00:21:04 +00:00
llvm-nm
llvm-objdump
llvm-prof
llvm-ranlib
llvm-rtdyld Load multiple object files and link them via RuntimeDyld in llvm-rtdyld. 2011-04-13 15:49:40 +00:00
llvm-shlib
llvm-stub
llvmc
lto
macho-dump
opt remove graphprinter support for domfrontier. 2011-04-05 21:43:56 +00:00
CMakeLists.txt
Makefile