| Commit message (Expand) | Author | Age | Files | Lines |
* | Add the private linkage. | Rafael Espindola | 2009-01-15 | 2 | -21/+23 |
* | Removed trailing whitespace from Makefiles. | Misha Brukman | 2009-01-09 | 1 | -2/+2 |
* | Make comments and code for QuietWarnings and QuietErrors | Dan Gohman | 2008-10-25 | 1 | -1/+1 |
* | Also properly handle linking of strong alias and weak global | Anton Korobeynikov | 2008-10-15 | 1 | -25/+39 |
* | Properly handle linking of strong alias with weak function, this fixes PR2883 | Anton Korobeynikov | 2008-10-15 | 1 | -1/+1 |
* | Rename isWeakForLinker to mayBeOverridden. Use it | Duncan Sands | 2008-09-29 | 1 | -6/+6 |
* | Initial support for the CMake build system. | Oscar Fuentes | 2008-09-22 | 1 | -0/+6 |
* | Make safer variant of alias resolution routine to be default | Anton Korobeynikov | 2008-09-09 | 1 | -1/+1 |
* | Fix incorrect linker behaviour: we shouldn't resolve weak aliases. | Anton Korobeynikov | 2008-09-09 | 1 | -2/+2 |
* | Reimplement LinkFunctionProtos in terms of GetLinkageResult. This fixes | Chris Lattner | 2008-07-14 | 1 | -167/+102 |
* | don't do any linkage, not even type resolution, of symbols that have | Chris Lattner | 2008-07-14 | 1 | -6/+10 |
* | implement linking of globals to functions, in one direction | Chris Lattner | 2008-07-14 | 1 | -81/+75 |
* | wrap long lines, remove some code from a non-assert build. | Chris Lattner | 2008-07-14 | 1 | -5/+7 |
* | The source and dest of an alias are *not* required to have the same type, | Chris Lattner | 2008-07-10 | 1 | -9/+3 |
* | Make DenseMap's insert return a pair, to more closely resemble std::map. | Dan Gohman | 2008-07-07 | 1 | -1/+1 |
* | Add convenient helper for checking whether global is weak in linker sense | Anton Korobeynikov | 2008-07-05 | 1 | -26/+11 |
* | Override weak stuff during linking of aliases. This fixes PR2463. | Anton Korobeynikov | 2008-07-05 | 1 | -8/+21 |
* | Properly link alias and function decls. This fixes PR2146 | Anton Korobeynikov | 2008-07-05 | 1 | -8/+27 |
* | when linking globals, make sure to preserve the address space of the global. | Chris Lattner | 2008-06-27 | 1 | -4/+8 |
* | Fix an error handling redefinition of linkonce functions where the | Chris Lattner | 2008-06-20 | 1 | -18/+14 |
* | Add a missing ~ (dtor became ctor) which caused crashes on a bunch of stuff. | Chris Lattner | 2008-06-16 | 1 | -2/+5 |
* | stop making PATypeHolder's so crazily. | Chris Lattner | 2008-06-16 | 1 | -33/+33 |
* | use a real associative container for type association instead of using | Chris Lattner | 2008-06-16 | 1 | -8/+94 |
* | bail out sooner if we have two concrete but different types. | Chris Lattner | 2008-06-16 | 1 | -0/+4 |
* | simplify some code. | Chris Lattner | 2008-06-16 | 1 | -24/+21 |
* | Apply a patch from Nathan Keynes, which speeds up llvm-link on | Chris Lattner | 2008-06-16 | 1 | -1/+0 |
* | handle vectors. Any integers that got here would necessarily be different al... | Chris Lattner | 2008-06-16 | 1 | -8/+11 |
* | Simplify ResolveTypes by pulling the null case out into the one | Chris Lattner | 2008-06-16 | 1 | -42/+30 |
* | simplify RecursiveResolveTypes and ResolveTypes by pulling the naming out of | Chris Lattner | 2008-06-16 | 1 | -23/+20 |
* | use 'continue' to make the function linker simpler. When linking a strong | Chris Lattner | 2008-06-09 | 1 | -21/+37 |
* | minor changes to short circuit the 'no linkage' case earlier for | Chris Lattner | 2008-06-09 | 1 | -27/+40 |
* | simplify function visibility handling. | Chris Lattner | 2008-06-09 | 1 | -7/+8 |
* | Factor code to copy global value attributes like | Duncan Sands | 2008-05-26 | 1 | -14/+4 |
* | Fix a bunch of 80col violations that arose from the Create API change. Tweak ... | Gabor Greif | 2008-05-15 | 1 | -2/+4 |
* | Add CommonLinkage; currently tentative definitions | Dale Johannesen | 2008-05-14 | 1 | -10/+18 |
* | Fix linking of internal aliases | Anton Korobeynikov | 2008-05-10 | 1 | -28/+55 |
* | Turn StripPointerCast() into a method | Anton Korobeynikov | 2008-05-07 | 1 | -1/+2 |
* | If weak GlobalVariable was bitcast'ed to different type during linking | Anton Korobeynikov | 2008-05-06 | 1 | -1/+1 |
* | Revert r49614. As Dan pointed out, some of these aren't correct. | Owen Anderson | 2008-04-14 | 1 | -1/+1 |
* | Replace calls of the form V1->setName(V2->getName()) with V1->takeName(V2), | Owen Anderson | 2008-04-13 | 1 | -1/+1 |
* | API changes for class Use size reduction, wave 1. | Gabor Greif | 2008-04-06 | 1 | -4/+4 |
* | Change the MemoryBuffer::getFile* methods to take just a pointer to the | Chris Lattner | 2008-04-01 | 1 | -3/+3 |
* | Ultimately resolve aliases during linking, if possible | Anton Korobeynikov | 2008-03-11 | 1 | -5/+4 |
* | Fix thinko: alias always defines new symbol. Even is aliasee itself is undefi... | Anton Korobeynikov | 2008-03-11 | 1 | -7/+2 |
* | Add sanity checks | Anton Korobeynikov | 2008-03-10 | 1 | -0/+10 |
* | Typo: 'function' => 'alias' | Anton Korobeynikov | 2008-03-10 | 1 | -3/+2 |
* | Syntactic sugar'ify stuff :) | Anton Korobeynikov | 2008-03-10 | 1 | -15/+15 |
* | Always run 'make check' :) Fix fallout from prev. commit: query for possible | Anton Korobeynikov | 2008-03-10 | 1 | -1/+1 |
* | Make error messages to have common style | Anton Korobeynikov | 2008-03-10 | 1 | -18/+12 |
* | Properly link globals with aliases | Anton Korobeynikov | 2008-03-10 | 1 | -20/+41 |